diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5d91a4e126..0815906c23 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -5,7 +5,8 @@ # Before submitting a PR: - [ ] Changes must not break binary backwards compatibility. If you are unclear on how to make the change you think is needed while maintaining backward compatibility, [CONTRIBUTING.md](CONTRIBUTING.md) for details. -- [ ] Add JavaDocs and other comments as appropriate. Consider including links in comments to relevant documentation on https://docs.github.com/en/rest . +- [ ] Add JavaDocs and other comments explaining the behavior. +- [ ] When adding or updating methods that fetch entities, add `@link` JavaDoc entries to the relevant documentation on https://docs.github.com/en/rest . - [ ] Add tests that cover any added or changed code. This generally requires capturing snapshot test data. See [CONTRIBUTING.md](CONTRIBUTING.md) for details. - [ ] Run `mvn -D enable-ci clean install site` locally. If this command doesn't succeed, your change will not pass CI. - [ ] Push your changes to a branch other than `main`. You will create your PR from that branch. @@ -14,6 +15,6 @@ - [ ] Fill in the "Description" above with clear summary of the changes. This includes: - [ ] If this PR fixes one or more issues, include "Fixes #" lines for each issue. - - [ ] Provide links to relevant documentation on https://docs.github.com/en/rest where possible. + - [ ] Provide links to relevant documentation on https://docs.github.com/en/rest where possible. If not including links, explain why not. - [ ] All lines of new code should be covered by tests as reported by code coverage. Any lines that are not covered must have PR comments explaining why they cannot be covered. For example, "Reaching this particular exception is hard and is not a particular common scenario." - [ ] Enable "Allow edits from maintainers". diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 038bc93fad..11d644db46 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 3ecfb8df30..65a986e512 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -19,64 +19,44 @@ permissions: jobs: build: - name: build-only (Java ${{ matrix.java }}) + name: build-only (Java 17) runs-on: ubuntu-latest strategy: - fail-fast: false - matrix: - java: [ 17 ] + fail-fast: true steps: - - uses: actions/checkout@v3 - - name: Set up JDK - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.java }} - distribution: 'zulu' - cache: 'maven' - - name: Maven Install (skipTests) - env: - MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} - run: mvn -B clean install -DskipTests --file pom.xml + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: 'temurin' + cache: 'maven' + - name: Maven Install (skipTests) + env: + MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} + run: mvn -B clean install -DskipTests --file pom.xml + - uses: actions/upload-artifact@v3 + with: + name: maven-target-directory + path: target/ + retention-days: 3 site: - name: site (Java ${{ matrix.java }}) + name: site (Java 17) runs-on: ubuntu-latest strategy: fail-fast: false - matrix: - java: [ 17 ] steps: - - uses: actions/checkout@v3 - - name: Set up JDK - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.java }} - distribution: 'adopt' - cache: 'maven' - - name: Maven Site - env: - MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} - run: mvn -B clean site -D enable-ci --file pom.xml - test-8: - name: test (${{ matrix.os }}, Java 8) - runs-on: ${{ matrix.os }}-latest - strategy: - fail-fast: false - matrix: - os: [ ubuntu ] - java: [ 8 ] - steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK uses: actions/setup-java@v3 with: - java-version: ${{ matrix.java }} - distribution: 'zulu' + java-version: 17 + distribution: 'temurin' cache: 'maven' - # JDK 8 - - name: Maven Install with Code Coverage - run: mvn -B clean install -D enable-ci -Djapicmp.skip --file pom.xml - - name: Codecov Report - uses: codecov/codecov-action@v3.1.1 + - name: Maven Site + env: + MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} + run: mvn -B clean site -D enable-ci --file pom.xml test: name: test (${{ matrix.os }}, Java ${{ matrix.java }}) runs-on: ${{ matrix.os }}-latest @@ -86,12 +66,12 @@ jobs: os: [ ubuntu, windows ] java: [ 11, 17 ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} - distribution: 'zulu' + distribution: 'temurin' cache: 'maven' # JDK 11+ - name: Maven Install without Code Coverage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5192c47bb8..5b52f26a8b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,7 +82,7 @@ When modifying existing tests, you can change the stubbed WireMock data files by #### 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. +This can be easier if the changes are minor or when you development environment is not setup to take updated snapshots. #### Generating a new snapshot diff --git a/pom.xml b/pom.xml index 3fe38e1f77..8e6029c0e6 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ scm:git:git@github.com/hub4j/${project.artifactId}.git scm:git:ssh://git@github.com/hub4j/${project.artifactId}.git https://github.com/hub4j/github-api/ - HEAD + github-api-1.317 @@ -38,7 +38,7 @@ true 2.2 4.9.2 - 2.10.0 + 3.5.0 0.70 0.50 @@ -92,17 +92,17 @@ org.apache.maven.plugins maven-source-plugin - 3.2.1 + 3.3.0 org.apache.maven.plugins maven-gpg-plugin - 3.0.1 + 3.1.0 org.jacoco jacoco-maven-plugin - 0.8.8 + 0.8.10 @@ -241,6 +241,9 @@ java18 1.0 + + java.net.http.* + @@ -278,7 +281,7 @@ org.apache.maven.plugins maven-project-info-reports-plugin - 3.4.1 + 3.4.2 org.apache.bcel @@ -301,19 +304,52 @@ + + + compile-java-11 + compile + + compile + + + 11 + 11 + 11 + + ${project.basedir}/src/main/java11 + + true + + + maven-surefire-plugin + + @{jacoco.surefire.argLine} ${surefire.argLine} + default-test src/test/resources/slow-or-flaky-tests.txt - @{jacoco.surefire.argLine} ${surefire.argLine} + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + org.kohsuke.github.api + true + + + + org.codehaus.mojo animal-sniffer-maven-plugin @@ -431,7 +467,7 @@ com.tngtech.archunit archunit - 0.23.1 + 1.1.0 test @@ -453,6 +489,12 @@ ${hamcrest.version} test + + com.github.npathai + hamcrest-optional + 2.0.0 + test + junit junit @@ -468,7 +510,7 @@ com.fasterxml.jackson.core jackson-databind - 2.14.0 + 2.15.2 commons-io @@ -485,7 +527,7 @@ commons-fileupload commons-fileupload - 1.4 + 1.5 test @@ -511,7 +553,7 @@ org.eclipse.jgit org.eclipse.jgit - 6.4.0.202211300538-r + 6.7.0.202309050840-r test @@ -579,7 +621,7 @@ com.github.tomakehurst wiremock-jre8-standalone - 2.32.0 + 2.35.1 test @@ -591,7 +633,7 @@ org.slf4j slf4j-simple - 2.0.3 + 2.0.7 test @@ -610,7 +652,7 @@ - slow-or-flaky-test + test-slow-multireleasejar-flaky !test diff --git a/src/main/java/org/kohsuke/github/GHAppFromManifest.java b/src/main/java/org/kohsuke/github/GHAppFromManifest.java new file mode 100644 index 0000000000..ed58423bbe --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHAppFromManifest.java @@ -0,0 +1,51 @@ +package org.kohsuke.github; + +/** + * A GitHub App with the additional attributes returned during its creation. + * + * @author Daniel Baur + * @see GitHub#createAppFromManifest(String) + */ +public class GHAppFromManifest extends GHApp { + + private String clientId; + private String clientSecret; + private String webhookSecret; + private String pem; + + /** + * Gets the client id + * + * @return the client id + */ + public String getClientId() { + return clientId; + } + + /** + * Gets the client secret + * + * @return the client secret + */ + public String getClientSecret() { + return clientSecret; + } + + /** + * Gets the webhook secret + * + * @return the webhook secret + */ + public String getWebhookSecret() { + return webhookSecret; + } + + /** + * Gets the pem + * + * @return the pem + */ + public String getPem() { + return pem; + } +} diff --git a/src/main/java/org/kohsuke/github/GHAppInstallation.java b/src/main/java/org/kohsuke/github/GHAppInstallation.java index 212a197940..cf5bda32b0 100644 --- a/src/main/java/org/kohsuke/github/GHAppInstallation.java +++ b/src/main/java/org/kohsuke/github/GHAppInstallation.java @@ -361,4 +361,25 @@ public GHAppCreateTokenBuilder createToken(Map permiss public GHAppCreateTokenBuilder createToken() { return new GHAppCreateTokenBuilder(root(), String.format("/app/installations/%d/access_tokens", getId())); } + + /** + * Shows whether the user or organization account actively subscribes to a plan listed by the authenticated GitHub + * App. When someone submits a plan change that won't be processed until the end of their billing cycle, you will + * also see the upcoming pending change. + * + *

+ * GitHub Apps must use a JWT to access this endpoint. + *

+ * OAuth Apps must use basic authentication with their client ID and client secret to access this endpoint. + * + * @return a GHMarketplaceAccountPlan instance + * @throws IOException + * it may throw an {@link IOException} + * @see Get + * a subscription plan for an account + */ + public GHMarketplaceAccountPlan getMarketplaceAccount() throws IOException { + return new GHMarketplacePlanForAccountBuilder(root(), account.getId()).createRequest(); + } } diff --git a/src/main/java/org/kohsuke/github/GHCodeownersError.java b/src/main/java/org/kohsuke/github/GHCodeownersError.java new file mode 100644 index 0000000000..8d5662700c --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHCodeownersError.java @@ -0,0 +1,77 @@ +package org.kohsuke.github; + +/** + * Represents an error in a {@code CODEOWNERS} file. See the + * relevant documentation. + * + * @author Michael Grant + */ +public class GHCodeownersError { + private int line, column; + + private String kind, source, suggestion, message, path; + + /** + * Gets line. + * + * @return the line + */ + public int getLine() { + return line; + } + + /** + * Gets column. + * + * @return the column + */ + public int getColumn() { + return column; + } + + /** + * Gets kind. + * + * @return the kind + */ + public String getKind() { + return kind; + } + + /** + * Gets source. + * + * @return the source + */ + public String getSource() { + return source; + } + + /** + * Gets suggestion. + * + * @return the suggestion + */ + public String getSuggestion() { + return suggestion; + } + + /** + * Gets message. + * + * @return the message + */ + public String getMessage() { + return message; + } + + /** + * Gets path. + * + * @return the path + */ + public String getPath() { + return path; + } +} diff --git a/src/main/java/org/kohsuke/github/GHCommit.java b/src/main/java/org/kohsuke/github/GHCommit.java index 257ff40298..8029fc614d 100644 --- a/src/main/java/org/kohsuke/github/GHCommit.java +++ b/src/main/java/org/kohsuke/github/GHCommit.java @@ -23,6 +23,7 @@ */ @SuppressFBWarnings(value = { "NP_UNWRITTEN_FIELD", "UWF_UNWRITTEN_FIELD" }, justification = "JSON API") public class GHCommit { + private GHRepository owner; private ShortInfo commit; @@ -125,7 +126,7 @@ public static class Stats { /** * A file that was modified. */ - @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "It's being initilized by JSON deserialization") + @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "It's being initialized by JSON deserialization") public static class File { /** The status. */ @@ -270,7 +271,7 @@ public static class User { } /** The sha. */ - String url, html_url, sha; + String url, html_url, sha, message; /** The files. */ List files; @@ -309,6 +310,7 @@ public GHCommit() { sha = commit.getSha(); url = commit.getUrl(); parents = commit.getParents(); + message = commit.getMessage(); } /** @@ -415,10 +417,28 @@ public URL getUrl() { * @return Can be empty but never null. * @throws IOException * on error + * @deprecated Use {@link #listFiles()} instead. */ + @Deprecated public List getFiles() throws IOException { + return listFiles().toList(); + } + + /** + * List of files changed/added/removed in this commit. Uses a paginated list if the files returned by GitHub exceed + * 300 in quantity. + * + * @return the List of files + * @see Get a + * commit + * @throws IOException + * on error + */ + public PagedIterable listFiles() throws IOException { + populate(); - return files != null ? Collections.unmodifiableList(files) : Collections.emptyList(); + + return new GHCommitFileIterable(owner, sha, files); } /** diff --git a/src/main/java/org/kohsuke/github/GHCommitFileIterable.java b/src/main/java/org/kohsuke/github/GHCommitFileIterable.java new file mode 100644 index 0000000000..8a3f02a6fe --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHCommitFileIterable.java @@ -0,0 +1,96 @@ +package org.kohsuke.github; + +import org.kohsuke.github.GHCommit.File; + +import java.util.Collections; +import java.util.Iterator; +import java.util.List; + +import javax.annotation.Nonnull; + +/** + * Iterable for commit listing. + * + * @author Stephen Horgan + */ +class GHCommitFileIterable extends PagedIterable { + + /** + * Number of files returned in the commit response. If there are more files than this, the response will include + * pagination link headers for the remaining files. + */ + private static final int GH_FILE_LIMIT_PER_COMMIT_PAGE = 300; + + private final GHRepository owner; + private final String sha; + private final File[] files; + + /** + * Instantiates a new GH commit iterable. + * + * @param owner + * the owner + * @param sha + * the SHA of the commit + * @param files + * the list of files initially populated + */ + public GHCommitFileIterable(GHRepository owner, String sha, List files) { + this.owner = owner; + this.sha = sha; + this.files = files != null ? files.toArray(new File[0]) : null; + } + + /** + * Iterator. + * + * @param pageSize + * the page size + * @return the paged iterator + */ + @Nonnull + @Override + public PagedIterator _iterator(int pageSize) { + + Iterator pageIterator; + + if (files != null && files.length < GH_FILE_LIMIT_PER_COMMIT_PAGE) { + // create a page iterator that only provides one page + pageIterator = Collections.singleton(files).iterator(); + } else { + // page size is controlled by the server for this iterator, do not allow it to be set by the caller + pageSize = 0; + + GitHubRequest request = owner.root() + .createRequest() + .withUrlPath(owner.getApiTailUrl("commits/" + sha)) + .build(); + + pageIterator = adapt( + GitHubPageIterator.create(owner.root().getClient(), GHCommitFilesPage.class, request, pageSize)); + } + + return new PagedIterator<>(pageIterator, null); + } + + /** + * Adapt. + * + * @param base + * the base commit page + * @return the iterator + */ + protected Iterator adapt(final Iterator base) { + return new Iterator() { + + public boolean hasNext() { + return base.hasNext(); + } + + public GHCommit.File[] next() { + GHCommitFilesPage v = base.next(); + return v.getFiles(); + } + }; + } +} diff --git a/src/main/java/org/kohsuke/github/GHCommitFilesPage.java b/src/main/java/org/kohsuke/github/GHCommitFilesPage.java new file mode 100644 index 0000000000..d2ab10dc98 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHCommitFilesPage.java @@ -0,0 +1,30 @@ +package org.kohsuke.github; + +import org.kohsuke.github.GHCommit.File; + +/** + * Represents the array of files in a commit returned by github. + * + * @author Stephen Horgan + */ +class GHCommitFilesPage { + private File[] files; + + public GHCommitFilesPage() { + } + + public GHCommitFilesPage(File[] files) { + this.files = files; + } + + /** + * Gets the files. + * + * @param owner + * the owner + * @return the files + */ + File[] getFiles() { + return files; + } +} diff --git a/src/main/java/org/kohsuke/github/GHCompare.java b/src/main/java/org/kohsuke/github/GHCompare.java index 00273fa224..08c6f051b1 100644 --- a/src/main/java/org/kohsuke/github/GHCompare.java +++ b/src/main/java/org/kohsuke/github/GHCompare.java @@ -186,6 +186,10 @@ public PagedIterator _iterator(int pageSize) { /** * Gets an array of files. * + * By default, the file array is limited to 300 results. To retrieve the full list of files, iterate over each + * commit returned by {@link GHCompare#listCommits} and use {@link GHCommit#listFiles} to get the files for each + * commit. + * * @return A copy of the array being stored in the class. */ public GHCommit.File[] getFiles() { @@ -224,8 +228,8 @@ GHCompare lateBind(GHRepository owner) { } /** - * Compare commits had a child commit element with additional details we want to capture. This extenstion of - * GHCommit provides that. + * Compare commits had a child commit element with additional details we want to capture. This extension of GHCommit + * provides that. */ @SuppressFBWarnings(value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD" }, justification = "JSON API") diff --git a/src/main/java/org/kohsuke/github/GHContent.java b/src/main/java/org/kohsuke/github/GHContent.java index 9a0e38c2ab..c476a89d8c 100644 --- a/src/main/java/org/kohsuke/github/GHContent.java +++ b/src/main/java/org/kohsuke/github/GHContent.java @@ -321,12 +321,11 @@ public GHContentUpdateResponse update(byte[] newContentBytes, String commitMessa String encodedContent = Base64.getEncoder().encodeToString(newContentBytes); Requester requester = root().createRequest() - .method("POST") + .method("PUT") .with("path", path) .with("message", commitMessage) .with("sha", sha) - .with("content", encodedContent) - .method("PUT"); + .with("content", encodedContent); if (branch != null) { requester.with("branch", branch); @@ -368,11 +367,10 @@ public GHContentUpdateResponse delete(String message) throws IOException { */ public GHContentUpdateResponse delete(String commitMessage, String branch) throws IOException { Requester requester = root().createRequest() - .method("POST") + .method("DELETE") .with("path", path) .with("message", commitMessage) - .with("sha", sha) - .method("DELETE"); + .with("sha", sha); if (branch != null) { requester.with("branch", branch); diff --git a/src/main/java/org/kohsuke/github/GHDeployKey.java b/src/main/java/org/kohsuke/github/GHDeployKey.java index e49579ee03..2af3b9d7ee 100644 --- a/src/main/java/org/kohsuke/github/GHDeployKey.java +++ b/src/main/java/org/kohsuke/github/GHDeployKey.java @@ -3,6 +3,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder; import java.io.IOException; +import java.util.Date; // TODO: Auto-generated Javadoc /** @@ -20,6 +21,18 @@ public class GHDeployKey { protected long id; private GHRepository owner; + /** Creation date of the deploy key */ + private String created_at; + + /** Last used date of the deploy key */ + private String last_used; + + /** Name of user that added the deploy key */ + private String added_by; + + /** Whether the deploykey has readonly permission or full access */ + private boolean read_only; + /** * Gets id. * @@ -65,6 +78,42 @@ public boolean isVerified() { return verified; } + /** + * Gets created_at. + * + * @return the created_at + */ + public Date getCreatedAt() { + return GitHubClient.parseDate(created_at); + } + + /** + * Gets last_used. + * + * @return the last_used + */ + public Date getLastUsedAt() { + return GitHubClient.parseDate(last_used); + } + + /** + * Gets added_by + * + * @return the added_by + */ + public String getAdded_by() { + return added_by; + } + + /** + * Is read_only + * + * @return true if the key can only read. False if the key has write permission as well. + */ + public boolean isRead_only() { + return read_only; + } + /** * Wrap gh deploy key. * @@ -95,7 +144,14 @@ GHDeployKey lateBind(GHRepository repo) { * @return the string */ public String toString() { - return new ToStringBuilder(this).append("title", title).append("id", id).append("key", key).toString(); + return new ToStringBuilder(this).append("title", title) + .append("id", id) + .append("key", key) + .append("created_at", created_at) + .append("last_used", last_used) + .append("added_by", added_by) + .append("read_only", read_only) + .toString(); } /** diff --git a/src/main/java/org/kohsuke/github/GHEvent.java b/src/main/java/org/kohsuke/github/GHEvent.java index d93411bedf..1170743ac3 100644 --- a/src/main/java/org/kohsuke/github/GHEvent.java +++ b/src/main/java/org/kohsuke/github/GHEvent.java @@ -102,6 +102,9 @@ public enum GHEvent { /** The merge queue entry. */ MERGE_QUEUE_ENTRY, + /** The merge group entry. */ + MERGE_GROUP, + /** The meta. */ META, diff --git a/src/main/java/org/kohsuke/github/GHFileNotFoundException.java b/src/main/java/org/kohsuke/github/GHFileNotFoundException.java index 3420a2799b..4de844e0ae 100644 --- a/src/main/java/org/kohsuke/github/GHFileNotFoundException.java +++ b/src/main/java/org/kohsuke/github/GHFileNotFoundException.java @@ -10,7 +10,7 @@ // TODO: Auto-generated Javadoc /** - * Request/responce contains useful metadata. Custom exception allows store info for next diagnostics. + * Request/response contains useful metadata. Custom exception allows store info for next diagnostics. * * @author Kanstantsin Shautsou */ diff --git a/src/main/java/org/kohsuke/github/GHIOException.java b/src/main/java/org/kohsuke/github/GHIOException.java index e26e19fadd..2654e845ab 100644 --- a/src/main/java/org/kohsuke/github/GHIOException.java +++ b/src/main/java/org/kohsuke/github/GHIOException.java @@ -10,7 +10,7 @@ // TODO: Auto-generated Javadoc /** - * Request/responce contains useful metadata. Custom exception allows store info for next diagnostics. + * Request/response contains useful metadata. Custom exception allows store info for next diagnostics. * * @author Kanstantsin Shautsou */ diff --git a/src/main/java/org/kohsuke/github/GHIssue.java b/src/main/java/org/kohsuke/github/GHIssue.java index 741fd73c3d..9d6027f331 100644 --- a/src/main/java/org/kohsuke/github/GHIssue.java +++ b/src/main/java/org/kohsuke/github/GHIssue.java @@ -517,7 +517,7 @@ public List getComments() throws IOException { } /** - * Obtains all the comments associated with this issue, witout any filter. + * Obtains all the comments associated with this issue, without any filter. * * @return the paged iterable * @throws IOException diff --git a/src/main/java/org/kohsuke/github/GHKey.java b/src/main/java/org/kohsuke/github/GHKey.java index a60717e661..01c73819b2 100644 --- a/src/main/java/org/kohsuke/github/GHKey.java +++ b/src/main/java/org/kohsuke/github/GHKey.java @@ -3,6 +3,8 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.apache.commons.lang3.builder.ToStringBuilder; +import java.io.IOException; + // TODO: Auto-generated Javadoc /** * SSH public key. @@ -74,4 +76,14 @@ public boolean isVerified() { public String toString() { return new ToStringBuilder(this).append("title", title).append("id", id).append("key", key).toString(); } + + /** + * Delete the GHKey + * + * @throws IOException + * the io exception + */ + public void delete() throws IOException { + root().createRequest().method("DELETE").withUrlPath(String.format("/user/keys/%d", id)).send(); + } } diff --git a/src/main/java/org/kohsuke/github/GHMarketplaceAccount.java b/src/main/java/org/kohsuke/github/GHMarketplaceAccount.java index ddc28ad1df..19a71b68fc 100644 --- a/src/main/java/org/kohsuke/github/GHMarketplaceAccount.java +++ b/src/main/java/org/kohsuke/github/GHMarketplaceAccount.java @@ -1,5 +1,6 @@ package org.kohsuke.github; +import java.io.IOException; import java.net.URL; // TODO: Auto-generated Javadoc @@ -72,4 +73,25 @@ public GHMarketplaceAccountType getType() { return type; } + /** + * Shows whether the user or organization account actively subscribes to a plan listed by the authenticated GitHub + * App. When someone submits a plan change that won't be processed until the end of their billing cycle, you will + * also see the upcoming pending change. + * + *

+ * GitHub Apps must use a JWT to access this endpoint. + *

+ * OAuth Apps must use basic authentication with their client ID and client secret to access this endpoint. + * + * @return a GHMarketplaceListAccountBuilder instance + * @throws IOException + * in case of {@link IOException} + * @see Get + * a subscription plan for an account + */ + public GHMarketplaceAccountPlan getPlan() throws IOException { + return new GHMarketplacePlanForAccountBuilder(root(), this.id).createRequest(); + } + } diff --git a/src/main/java/org/kohsuke/github/GHMarketplacePlanForAccountBuilder.java b/src/main/java/org/kohsuke/github/GHMarketplacePlanForAccountBuilder.java new file mode 100644 index 0000000000..e5167f31ac --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHMarketplacePlanForAccountBuilder.java @@ -0,0 +1,45 @@ +package org.kohsuke.github; + +import java.io.IOException; + +// TODO: Auto-generated Javadoc +/** + * Returns the plan associated with current account. + * + * @author Benoit Lacelle + * @see GHMarketplacePlan#listAccounts() + * @see GitHub#listMarketplacePlans() + */ +public class GHMarketplacePlanForAccountBuilder extends GitHubInteractiveObject { + private final Requester builder; + private final long accountId; + + /** + * Instantiates a new GH marketplace list account builder. + * + * @param root + * the root + * @param accountId + * the account id + */ + GHMarketplacePlanForAccountBuilder(GitHub root, long accountId) { + super(root); + this.builder = root.createRequest(); + this.accountId = accountId; + } + + /** + * Fetch the plan associated with the account specified on construction. + *

+ * GitHub Apps must use a JWT to access this endpoint. + * + * @return a GHMarketplaceAccountPlan + * @throws IOException + * on error + */ + public GHMarketplaceAccountPlan createRequest() throws IOException { + return builder.withUrlPath(String.format("/marketplace_listing/accounts/%d", this.accountId)) + .fetch(GHMarketplaceAccountPlan.class); + } + +} diff --git a/src/main/java/org/kohsuke/github/GHMarketplacePriceModel.java b/src/main/java/org/kohsuke/github/GHMarketplacePriceModel.java index f8a0c5104d..a41cfc651c 100644 --- a/src/main/java/org/kohsuke/github/GHMarketplacePriceModel.java +++ b/src/main/java/org/kohsuke/github/GHMarketplacePriceModel.java @@ -12,11 +12,11 @@ public enum GHMarketplacePriceModel { /** The free. */ - FREE("free"), + FREE("FREE"), /** The per unit. */ - PER_UNIT("per-unit"), + PER_UNIT("PER_UNIT"), /** The flat rate. */ - FLAT_RATE("flat-rate"); + FLAT_RATE("FLAT_RATE"); @JsonValue private final String internalName; diff --git a/src/main/java/org/kohsuke/github/GHMyself.java b/src/main/java/org/kohsuke/github/GHMyself.java index ea02e83a0d..43914f2bd2 100644 --- a/src/main/java/org/kohsuke/github/GHMyself.java +++ b/src/main/java/org/kohsuke/github/GHMyself.java @@ -70,9 +70,9 @@ public List getEmails2() throws IOException { } /** - * Returns the read-only list of all the pulic keys of the current user. + * Returns the read-only list of all the public keys of the current user. *

- * NOTE: When using OAuth authenticaiton, the READ/WRITE User scope is required by the GitHub APIs, otherwise you + * NOTE: When using OAuth authentication, the READ/WRITE User scope is required by the GitHub APIs, otherwise you * will get a 404 NOT FOUND. * * @return Always non-null. @@ -83,6 +83,28 @@ public List getPublicKeys() throws IOException { return root().createRequest().withUrlPath("/user/keys").toIterable(GHKey[].class, null).toList(); } + /** + * Add public SSH key for the user. + *

+ * https://docs.github.com/en/rest/users/keys?apiVersion=2022-11-28#create-a-public-ssh-key-for-the-authenticated-user + * + * @param title + * Title of the SSH key + * @param key + * the public key + * @return the newly created Github key + * @throws IOException + * the io exception + */ + public GHKey addPublicKey(String title, String key) throws IOException { + return root().createRequest() + .withUrlPath("/user/keys") + .method("POST") + .with("title", title) + .with("key", key) + .fetch(GHKey.class); + } + /** * Returns the read-only list of all the public verified keys of the current user. *

diff --git a/src/main/java/org/kohsuke/github/GHOrganization.java b/src/main/java/org/kohsuke/github/GHOrganization.java index 5b45e63143..0d881aff61 100644 --- a/src/main/java/org/kohsuke/github/GHOrganization.java +++ b/src/main/java/org/kohsuke/github/GHOrganization.java @@ -655,7 +655,7 @@ public List getRepositoriesWithOpenPullRequests() throws IOExcepti } /** - * Gets all the open pull requests in this organizataion. + * Gets all the open pull requests in this organization. * * @return the pull requests * @throws IOException diff --git a/src/main/java/org/kohsuke/github/GHPermission.java b/src/main/java/org/kohsuke/github/GHPermission.java index ec8613182b..bfe35ba9c1 100644 --- a/src/main/java/org/kohsuke/github/GHPermission.java +++ b/src/main/java/org/kohsuke/github/GHPermission.java @@ -24,7 +24,7 @@ package org.kohsuke.github; -import java.util.Locale; +import org.kohsuke.github.internal.EnumUtils; // TODO: Auto-generated Javadoc /** @@ -52,7 +52,7 @@ public String getPermission() { * @return the permission type */ public GHPermissionType getPermissionType() { - return Enum.valueOf(GHPermissionType.class, permission.toUpperCase(Locale.ENGLISH)); + return EnumUtils.getEnumOrDefault(GHPermissionType.class, permission, GHPermissionType.UNKNOWN); } /** diff --git a/src/main/java/org/kohsuke/github/GHPermissionType.java b/src/main/java/org/kohsuke/github/GHPermissionType.java index 2414c5d2a4..8dc9ca1a14 100644 --- a/src/main/java/org/kohsuke/github/GHPermissionType.java +++ b/src/main/java/org/kohsuke/github/GHPermissionType.java @@ -15,7 +15,9 @@ public enum GHPermissionType { /** The read. */ READ(10), /** The none. */ - NONE(0); + NONE(0), + /** The unknown permission type returned when an unrecognized permission type is returned. */ + UNKNOWN(-5); private final int level; diff --git a/src/main/java/org/kohsuke/github/GHPullRequest.java b/src/main/java/org/kohsuke/github/GHPullRequest.java index 894c146497..44de034cad 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequest.java +++ b/src/main/java/org/kohsuke/github/GHPullRequest.java @@ -242,9 +242,9 @@ public int getAdditions() throws IOException { } /** - * Gets commits. + * Gets the number of commits. * - * @return the commits + * @return the number of commits * @throws IOException * the io exception */ diff --git a/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java b/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java index fa2210b591..674adb6516 100644 --- a/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java +++ b/src/main/java/org/kohsuke/github/GHPullRequestReviewComment.java @@ -24,6 +24,7 @@ package org.kohsuke.github; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import org.kohsuke.github.internal.EnumUtils; import java.io.IOException; import java.net.URL; @@ -46,16 +47,27 @@ public class GHPullRequestReviewComment extends GHObject implements Reactable { /** The owner. */ GHPullRequest owner; + private Long pull_request_review_id = -1L; private String body; private GHUser user; private String path; private String html_url; + private String pull_request_url; private int position = -1; private int original_position = -1; private long in_reply_to_id = -1L; + private Integer start_line = -1; + private Integer original_start_line = -1; + private String start_side; + private int line = -1; + private int original_line = -1; + private String side; private String diff_hunk; private String commit_id; private String original_commit_id; + private String body_html; + private String body_text; + private GHPullRequestReviewCommentReactions reactions; private GHCommentAuthorAssociation author_association; /** @@ -227,6 +239,130 @@ protected String getApiRoute(boolean includePullNumber) { + (includePullNumber ? "/" + owner.getNumber() : "") + "/comments/" + getId(); } + /** + * Gets The first line of the range for a multi-line comment. + * + * @return the start line + */ + public int getStartLine() { + return start_line != null ? start_line : -1; + } + + /** + * Gets The first line of the range for a multi-line comment. + * + * @return the original start line + */ + public int getOriginalStartLine() { + return original_start_line != null ? original_start_line : -1; + } + + /** + * Gets The side of the first line of the range for a multi-line comment. + * + * @return {@link Side} the side of the first line + */ + public Side getStartSide() { + return Side.from(start_side); + } + + /** + * Gets The line of the blob to which the comment applies. The last line of the range for a multi-line comment. + * + * @return the line to which the comment applies + */ + public int getLine() { + return line; + } + + /** + * Gets The line of the blob to which the comment applies. The last line of the range for a multi-line comment. + * + * @return the line to which the comment applies + */ + public int getOriginalLine() { + return original_line; + } + + /** + * Gets The side of the diff to which the comment applies. The side of the last line of the range for a multi-line + * comment + * + * @return {@link Side} the side if the diff to which the comment applies + */ + public Side getSide() { + return Side.from(side); + } + + /** + * Gets The ID of the pull request review to which the comment belongs. + * + * @return {@link Long} the ID of the pull request review + */ + public Long getPullRequestReviewId() { + return pull_request_review_id != null ? pull_request_review_id : -1; + } + + /** + * Gets URL for the pull request that the review comment belongs to. + * + * @return {@link URL} the URL of the pull request + */ + public URL getPullRequestUrl() { + return GitHubClient.parseURL(pull_request_url); + } + + /** + * Gets The body in html format. + * + * @return {@link String} the body in html format + */ + public String getBodyHtml() { + return body_html; + } + + /** + * Gets The body text. + * + * @return {@link String} the body text + */ + public String getBodyText() { + return body_text; + } + + /** + * Gets the Reaction Rollup + * + * @return {@link GHPullRequestReviewCommentReactions} the reaction rollup + */ + public GHPullRequestReviewCommentReactions getReactions() { + return reactions; + } + + /** + * The side of the diff to which the comment applies + */ + public static enum Side { + /** Right side */ + RIGHT, + /** Left side */ + LEFT, + /** Unknown side */ + UNKNOWN; + + /** + * From. + * + * @param value + * the value + * @return the status + */ + public static Side from(String value) { + return EnumUtils.getEnumOrDefault(Side.class, value, Side.UNKNOWN); + } + + } + /** * Updates the comment. * diff --git a/src/main/java/org/kohsuke/github/GHPullRequestReviewCommentReactions.java b/src/main/java/org/kohsuke/github/GHPullRequestReviewCommentReactions.java new file mode 100644 index 0000000000..bd90cec869 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHPullRequestReviewCommentReactions.java @@ -0,0 +1,120 @@ +package org.kohsuke.github; + +import com.fasterxml.jackson.annotation.JsonProperty; + +import java.net.URL; + +/** + * Reactions for a Pull Request Review comment. + * + * @author Vasilis Gakias + * @see API + * documentation in the response schema + * @see GHPullRequestReviewComment + */ +public class GHPullRequestReviewCommentReactions { + + private String url; + + private int total_count = -1; + @JsonProperty("+1") + private int plus_one = -1; + @JsonProperty("-1") + private int minus_one = -1; + private int laugh = -1; + private int confused = -1; + private int heart = -1; + private int hooray = -1; + private int eyes = -1; + private int rocket = -1; + + /** + * Gets the URL of the comment's reactions + * + * @return the URL of the comment's reactions + */ + public URL getUrl() { + return GitHubClient.parseURL(url); + } + + /** + * Gets the total count of reactions + * + * @return the number of total reactions + */ + public int getTotalCount() { + return total_count; + } + + /** + * Gets the number of +1 reactions + * + * @return the number of +1 reactions + */ + public int getPlusOne() { + return plus_one; + } + + /** + * Gets the number of -1 reactions + * + * @return the number of -1 reactions + */ + public int getMinusOne() { + return minus_one; + } + + /** + * Gets the number of laugh reactions + * + * @return the number of laugh reactions + */ + public int getLaugh() { + return laugh; + } + + /** + * Gets the number of confused reactions + * + * @return the number of confused reactions + */ + public int getConfused() { + return confused; + } + + /** + * Gets the number of heart reactions + * + * @return the number of heart reactions + */ + public int getHeart() { + return heart; + } + + /** + * Gets the number of hooray reactions + * + * @return the number of hooray reactions + */ + public int getHooray() { + return hooray; + } + + /** + * Gets the number of eyes reactions + * + * @return the number of eyes reactions + */ + public int getEyes() { + return eyes; + } + + /** + * Gets the number of rocket reactions + * + * @return the number of rocket reactions + */ + public int getRocket() { + return rocket; + } +} diff --git a/src/main/java/org/kohsuke/github/GHRateLimit.java b/src/main/java/org/kohsuke/github/GHRateLimit.java index 8b38e0ccd9..84c9345e77 100644 --- a/src/main/java/org/kohsuke/github/GHRateLimit.java +++ b/src/main/java/org/kohsuke/github/GHRateLimit.java @@ -347,7 +347,7 @@ Record getRecord(@Nonnull RateLimitTarget rateLimitTarget) { } /** - * A limit record used as a placeholder when the the actual limit is not known. + * A limit record used as a placeholder when the actual limit is not known. * * @since 1.100 */ @@ -528,7 +528,7 @@ && getRemaining() <= other.getRemaining())) { } else if (!(other instanceof UnknownLimitRecord)) { // If the above is not the case that means other has a later reset // or the same resent and fewer requests remaining. - // If the other record is not an unknown record, the the other is more recent + // If the other record is not an unknown record, the other is more recent return other; } else if (this.isExpired() && !other.isExpired()) { // The other is an unknown record. diff --git a/src/main/java/org/kohsuke/github/GHRef.java b/src/main/java/org/kohsuke/github/GHRef.java index 47de0cf9a7..429dcfbf0a 100644 --- a/src/main/java/org/kohsuke/github/GHRef.java +++ b/src/main/java/org/kohsuke/github/GHRef.java @@ -85,7 +85,7 @@ public void delete() throws IOException { } /** - * Retrive a ref of the given type for the current GitHub repository. + * Retrieve a ref of the given type for the current GitHub repository. * * @param repository * the repository to read from diff --git a/src/main/java/org/kohsuke/github/GHReleaseBuilder.java b/src/main/java/org/kohsuke/github/GHReleaseBuilder.java index ccc5ec63cf..1490849ccb 100644 --- a/src/main/java/org/kohsuke/github/GHReleaseBuilder.java +++ b/src/main/java/org/kohsuke/github/GHReleaseBuilder.java @@ -3,6 +3,7 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.io.IOException; +import java.util.Locale; // TODO: Auto-generated Javadoc /** @@ -103,6 +104,41 @@ public GHReleaseBuilder categoryName(String categoryName) { return this; } + /** + * Values for whether this release should be the latest. + */ + public static enum MakeLatest { + + /** Make this the latest release */ + TRUE, + /** Do not make this the latest release */ + FALSE, + /** Latest release is determined by date and higher semantic version */ + LEGACY; + + /** + * To string. + * + * @return the string + */ + @Override + public String toString() { + return name().toLowerCase(Locale.ROOT); + } + } + + /** + * Optional. + * + * @param latest + * Whether to make this the latest release. Default is {@code TRUE} + * @return the gh release builder + */ + public GHReleaseBuilder makeLatest(MakeLatest latest) { + builder.with("make_latest", latest); + return this; + } + /** * Create gh release. * diff --git a/src/main/java/org/kohsuke/github/GHReleaseUpdater.java b/src/main/java/org/kohsuke/github/GHReleaseUpdater.java index 951d845622..83113412d8 100644 --- a/src/main/java/org/kohsuke/github/GHReleaseUpdater.java +++ b/src/main/java/org/kohsuke/github/GHReleaseUpdater.java @@ -110,6 +110,18 @@ public GHReleaseUpdater categoryName(String categoryName) { return this; } + /** + * Optional. + * + * @param latest + * Whether to make this the latest release. Default is {@code TRUE} + * @return the gh release builder + */ + public GHReleaseUpdater makeLatest(GHReleaseBuilder.MakeLatest latest) { + builder.with("make_latest", latest); + return this; + } + /** * Update gh release. * diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index 784242672c..259dbffe7e 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -103,6 +103,8 @@ public class GHRepository extends GHObject { private boolean allow_rebase_merge; + private boolean allow_forking; + private boolean delete_branch_on_merge; @JsonProperty("private") @@ -715,6 +717,15 @@ public boolean isAllowRebaseMerge() { return allow_rebase_merge; } + /** + * Is allow private forks + * + * @return the boolean + */ + public boolean isAllowForking() { + return allow_forking; + } + /** * Automatically deleting head branches when pull requests are merged. * @@ -1461,6 +1472,18 @@ public void allowRebaseMerge(boolean value) throws IOException { set().allowRebaseMerge(value); } + /** + * Allow private fork. + * + * @param value + * the value + * @throws IOException + * the io exception + */ + public void allowForking(boolean value) throws IOException { + set().allowForking(value); + } + /** * After pull requests are merged, you can have head branches deleted automatically. * @@ -1891,7 +1914,7 @@ public GHCompare getCompare(GHBranch id1, GHBranch id2) throws IOException { /** * Retrieves all refs for the github repository. * - * @return an array of GHRef elements coresponding with the refs in the remote repository. + * @return an array of GHRef elements corresponding with the refs in the remote repository. * @throws IOException * on failure communicating with GitHub */ @@ -1937,7 +1960,7 @@ public PagedIterable listRefs(String refType) throws IOException { } /** - * Retrive a ref of the given type for the current GitHub repository. + * Retrieve a ref of the given type for the current GitHub repository. * * @param refName * eg: heads/branch @@ -1964,7 +1987,7 @@ public GHTagObject getTagObject(String sha) throws IOException { } /** - * Retrive a tree of the given type for the current GitHub repository. + * Retrieve a tree of the given type for the current GitHub repository. * * @param sha * sha number or branch name ex: "main" @@ -2219,6 +2242,29 @@ public PagedIterable getCheckRuns(String ref) throws IOException { return new GHCheckRunsIterable(this, request); } + /** + * Gets check runs for given ref which validate provided parameters + * + * @param ref + * the Git reference + * @param params + * a map of parameters to filter check runs + * @return check runs for the given ref + * @throws IOException + * the io exception + * @see List check runs + * for a specific ref + */ + @Preview(ANTIOPE) + public PagedIterable getCheckRuns(String ref, Map params) throws IOException { + GitHubRequest request = root().createRequest() + .withUrlPath(String.format("/repos/%s/%s/commits/%s/check-runs", getOwnerName(), name, ref)) + .with(params) + .withPreview(ANTIOPE) + .build(); + return new GHCheckRunsIterable(this, request); + } + /** * Creates a commit status. * @@ -2231,7 +2277,7 @@ public PagedIterable getCheckRuns(String ref) throws IOException { * @param description * Optional short description. * @param context - * Optinal commit status context. + * Optional commit status context. * @return the gh commit status * @throws IOException * the io exception @@ -2715,6 +2761,47 @@ public GHContent getReadme() throws IOException { return requester.withUrlPath(getApiTailUrl("readme")).fetch(GHContent.class).wrap(this); } + /** + * Create a repository variable. + * + * @param name + * the variable name (e.g. test-variable) + * @param value + * the value + * @throws IOException + * the io exception + */ + public void createVariable(String name, String value) throws IOException { + GHRepositoryVariable.create(this).name(name).value(value).done(); + } + + /** + * Gets a variable by name + * + * @param name + * the variable name (e.g. test-variable) + * @return the variable + * @throws IOException + * the io exception + */ + @Deprecated + public GHRepositoryVariable getRepoVariable(String name) throws IOException { + return getVariable(name); + } + + /** + * Gets a repository variable. + * + * @param name + * the variable name (e.g. test-variable) + * @return the variable + * @throws IOException + * the io exception + */ + public GHRepositoryVariable getVariable(String name) throws IOException { + return GHRepositoryVariable.read(this, name); + } + /** * Creates a new content, or update an existing content. * @@ -2836,14 +2923,31 @@ public GHMilestone createMilestone(String title, String description) throws IOEx * the io exception */ public GHDeployKey addDeployKey(String title, String key) throws IOException { + return addDeployKey(title, key, false); + } + + /** + * Add deploy key gh deploy key. + * + * @param title + * the title + * @param key + * the key + * @param readOnly + * read-only ability of the key + * @return the gh deploy key + * @throws IOException + * the io exception + */ + public GHDeployKey addDeployKey(String title, String key, boolean readOnly) throws IOException { return root().createRequest() .method("POST") .with("title", title) .with("key", key) + .with("read_only", readOnly) .withUrlPath(getApiTailUrl("keys")) .fetch(GHDeployKey.class) .lateBind(this); - } /** @@ -2942,6 +3046,25 @@ public GHSubscription getSubscription() throws IOException { } } + // Only used within listCodeownersErrors(). + private static class GHCodeownersErrors { + public List errors; + } + + /** + * List errors in the {@code CODEOWNERS} file. Note that GitHub skips lines with incorrect syntax; these are + * reported in the web interface, but not in the API call which this library uses. + * + * @return the list of errors + * @throws IOException + * the io exception + */ + public List listCodeownersErrors() throws IOException { + return root().createRequest() + .withUrlPath(getApiTailUrl("codeowners/errors")) + .fetch(GHCodeownersErrors.class).errors; + } + /** * List contributors paged iterable. * @@ -3552,6 +3675,26 @@ protected Updater(@Nonnull GHRepository repository) { } } + /** + * Star a repository. + * + * @throws IOException + * the io exception + */ + public void star() throws IOException { + root().createRequest().method("PUT").withUrlPath(String.format("/user/starred/%s", full_name)).send(); + } + + /** + * Unstar a repository. + * + * @throws IOException + * the io exception + */ + public void unstar() throws IOException { + root().createRequest().method("DELETE").withUrlPath(String.format("/user/starred/%s", full_name)).send(); + } + /** * A {@link GHRepositoryBuilder} that allows multiple properties to be updated per request. * diff --git a/src/main/java/org/kohsuke/github/GHRepositoryBuilder.java b/src/main/java/org/kohsuke/github/GHRepositoryBuilder.java index 17ee0041d4..a7b5b11a72 100644 --- a/src/main/java/org/kohsuke/github/GHRepositoryBuilder.java +++ b/src/main/java/org/kohsuke/github/GHRepositoryBuilder.java @@ -76,6 +76,19 @@ public S allowRebaseMerge(boolean enabled) throws IOException { return with("allow_rebase_merge", enabled); } + /** + * Allow or disallow private forks + * + * @param enabled + * true if enabled + * @return a builder to continue with building + * @throws IOException + * In case of any networking error or error from the server. + */ + public S allowForking(boolean enabled) throws IOException { + return with("allow_forking", enabled); + } + /** * After pull requests are merged, you can have head branches deleted automatically. * @@ -167,7 +180,7 @@ public S private_(boolean enabled) throws IOException { */ public S visibility(final Visibility visibility) throws IOException { requester.withPreview(NEBULA); - return with("visibility", visibility); + return with("visibility", visibility.toString()); } /** diff --git a/src/main/java/org/kohsuke/github/GHRepositoryVariable.java b/src/main/java/org/kohsuke/github/GHRepositoryVariable.java new file mode 100644 index 0000000000..cc71f38a49 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHRepositoryVariable.java @@ -0,0 +1,166 @@ +package org.kohsuke.github; + +import java.io.IOException; +import java.util.Objects; + +import javax.annotation.Nonnull; + +/** + * The type Gh repository variable. + * + * @author garridobarrera + */ +public class GHRepositoryVariable extends GitHubInteractiveObject { + + private static final String SLASH = "/"; + + private static final String VARIABLE_NAMESPACE = "actions/variables"; + + private String name; + private String value; + + private String url; + private String createdAt; + private String updatedAt; + + /** + * Gets url. + * + * @return the url + */ + @Nonnull + public String getUrl() { + return url; + } + + /** + * Gets name. + * + * @return the name + */ + public String getName() { + return name; + } + + /** + * Sets name. + * + * @param name + * the name + */ + public void setName(String name) { + this.name = name; + } + + /** + * Gets value. + * + * @return the value + */ + public String getValue() { + return value; + } + + /** + * Sets value. + * + * @param value + * the value + */ + public void setValue(String value) { + this.value = value; + } + + /** + * Gets the api root. + * + * @return the api root + */ + @Nonnull + GitHub getApiRoot() { + return Objects.requireNonNull(root()); + } + + /** + * Reads a variable from a repository. + * + * @param repository + * the repository to read from + * @param name + * the name of the variable + * @return a variable + * @throws IOException + * the io exception + */ + static GHRepositoryVariable read(@Nonnull GHRepository repository, @Nonnull String name) throws IOException { + GHRepositoryVariable variable = repository.root() + .createRequest() + .withUrlPath(repository.getApiTailUrl(VARIABLE_NAMESPACE), name) + .fetch(GHRepositoryVariable.class); + variable.url = repository.getApiTailUrl("actions/variables"); + return variable; + } + + /** + * Begins the creation of a new instance. + *

+ * Consumer must call {@link GHRepositoryVariable.Creator#done()} to commit changes. + * + * @param repository + * the repository in which the variable will be created. + * @return a {@link GHRepositoryVariable.Creator} + * @throws IOException + * the io exception + */ + @BetaApi + static GHRepositoryVariable.Creator create(GHRepository repository) throws IOException { + return new GHRepositoryVariable.Creator(repository); + } + + /** + * Delete this variable from the repository. + * + * @throws IOException + * the io exception + */ + public void delete() throws IOException { + root().createRequest().method("DELETE").withUrlPath(getUrl().concat(SLASH).concat(name)).send(); + } + + /** + * Begins a single property update. + * + * @return a {@link GHRepositoryVariable.Setter} + */ + @BetaApi + public GHRepositoryVariable.Setter set() { + return new GHRepositoryVariable.Setter(this); + } + + /** + * A {@link GHRepositoryVariableBuilder} that updates a single property per request + *

+ * {@link #done()} is called automatically after the property is set. + */ + @BetaApi + public static class Setter extends GHRepositoryVariableBuilder { + private Setter(@Nonnull GHRepositoryVariable base) { + super(GHRepositoryVariable.class, base.getApiRoot(), base); + requester.method("PATCH").withUrlPath(base.getUrl().concat(SLASH).concat(base.getName())); + } + } + + /** + * A {@link GHRepositoryVariableBuilder} that creates a new {@link GHRepositoryVariable} + *

+ * Consumer must call {@link #done()} to create the new instance. + */ + @BetaApi + public static class Creator extends GHRepositoryVariableBuilder { + private Creator(@Nonnull GHRepository repository) { + super(GHRepositoryVariable.Creator.class, repository.root(), null); + requester.method("POST").withUrlPath(repository.getApiTailUrl(VARIABLE_NAMESPACE)); + } + } + +} diff --git a/src/main/java/org/kohsuke/github/GHRepositoryVariableBuilder.java b/src/main/java/org/kohsuke/github/GHRepositoryVariableBuilder.java new file mode 100644 index 0000000000..62af8140d8 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHRepositoryVariableBuilder.java @@ -0,0 +1,66 @@ +package org.kohsuke.github; + +import java.io.IOException; + +import javax.annotation.CheckForNull; +import javax.annotation.Nonnull; + +/** + * The type Gh repository variable builder. + * + * @param + * the type parameter + */ +public class GHRepositoryVariableBuilder extends AbstractBuilder { + /** + * Instantiates a new GH Repository Variable builder. + * + * @param intermediateReturnType + * Intermediate return type for this builder returned by calls to {@link #with(String, Object)}. If + * {@link S} the same as {@link GHRepositoryVariable}, this builder will commit changes after each call + * to {@link #with(String, Object)}. + * @param root + * the GitHub instance to which updates will be sent + * @param baseInstance + * instance on which to base this builder. If {@code null} a new instance will be created. + */ + protected GHRepositoryVariableBuilder(@Nonnull Class intermediateReturnType, + @Nonnull GitHub root, + @CheckForNull GHRepositoryVariable baseInstance) { + super(GHRepositoryVariable.class, intermediateReturnType, root, baseInstance); + if (baseInstance != null) { + requester.with("name", baseInstance.getName()); + requester.with("value", baseInstance.getValue()); + } + } + + /** + * Name. + * + * @param value + * the value + * @return the s + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Nonnull + @BetaApi + public S name(String value) throws IOException { + return with("name", value); + } + + /** + * Name. + * + * @param value + * the value + * @return the s + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Nonnull + @BetaApi + public S value(String value) throws IOException { + return with("value", value); + } +} diff --git a/src/main/java/org/kohsuke/github/GHTree.java b/src/main/java/org/kohsuke/github/GHTree.java index 33b084fac3..6a2be8a55e 100644 --- a/src/main/java/org/kohsuke/github/GHTree.java +++ b/src/main/java/org/kohsuke/github/GHTree.java @@ -61,7 +61,7 @@ public GHTreeEntry getEntry(String path) { /** * Returns true if the number of items in the tree array exceeded the GitHub maximum limit. * - * @return true true if the number of items in the tree array exceeded the GitHub maximum limit otherwise false. + * @return true if the number of items in the tree array exceeded the GitHub maximum limit otherwise false. */ public boolean isTruncated() { return truncated; diff --git a/src/main/java/org/kohsuke/github/GHTreeBuilder.java b/src/main/java/org/kohsuke/github/GHTreeBuilder.java index 8d4a3b91c9..892afb7686 100644 --- a/src/main/java/org/kohsuke/github/GHTreeBuilder.java +++ b/src/main/java/org/kohsuke/github/GHTreeBuilder.java @@ -22,7 +22,7 @@ public class GHTreeBuilder { // Issue #636: Create Tree no longer accepts null value in sha field @JsonInclude(Include.NON_NULL) @SuppressFBWarnings("URF_UNREAD_FIELD") - private static final class TreeEntry { + private static class TreeEntry { private final String path; private final String mode; @@ -37,6 +37,22 @@ private TreeEntry(String path, String mode, String type) { } } + private static class DeleteTreeEntry extends TreeEntry { + /** + * According to reference doc https://docs.github.com/en/rest/git/trees?apiVersion=2022-11-28#create-a-tree: if + * sha value is null then the file will be deleted. That's why in this DTO sha is always {@literal null} and is + * included to json. + */ + @JsonInclude + private final String sha = null; + + private DeleteTreeEntry(String path) { + // The `mode` and `type` parameters are required by the API, but their values are ignored during delete. + // Supply reasonable placeholders. + super(path, "100644", "blob"); + } + } + /** * Instantiates a new GH tree builder. * @@ -162,6 +178,19 @@ public GHTreeBuilder add(String path, String content, boolean executable) { return add(path, content.getBytes(StandardCharsets.UTF_8), executable); } + /** + * Removes an entry with the given path from base tree. + * + * @param path + * the file path in the tree + * @return this GHTreeBuilder + */ + public GHTreeBuilder delete(String path) { + TreeEntry entry = new DeleteTreeEntry(path); + treeEntries.add(entry); + return this; + } + private String getApiTail() { return String.format("/repos/%s/%s/git/trees", repo.getOwnerName(), repo.getName()); } diff --git a/src/main/java/org/kohsuke/github/GHVerification.java b/src/main/java/org/kohsuke/github/GHVerification.java index a38ad958d2..2a759ea5a5 100644 --- a/src/main/java/org/kohsuke/github/GHVerification.java +++ b/src/main/java/org/kohsuke/github/GHVerification.java @@ -9,9 +9,9 @@ * * @author Sourabh Sarvotham Parkala * @see tags signature - * verificatiion + * verification * @see commits signature - * verificatiion + * verification */ @SuppressFBWarnings(value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" }, justification = "JSON API") @@ -32,7 +32,7 @@ public boolean isVerified() { /** * Gets reason for verification value. * - * @return return reason of type {@link Reason}, such as "valid" or "unsigned". The possible values can be found in + * @return reason of type {@link Reason}, such as "valid" or "unsigned". The possible values can be found in * {@link Reason}} */ public Reason getReason() { @@ -61,48 +61,63 @@ public String getPayload() { * The possible values for reason in verification object from github. * * @author Sourabh Sarvotham Parkala - * @see List of possible - * reason values + * @see List of possible reason + * values. Note graphQL documentation has currently the most updated values. */ public enum Reason { - /** The expired key. */ + /** Signing key expired. */ EXPIRED_KEY, - /** The not signing key. */ + /** The usage flags for the key that signed this don't allow signing. */ NOT_SIGNING_KEY, - /** The gpgverify error. */ + /** The GPG verification service misbehaved. */ GPGVERIFY_ERROR, - /** The gpgverify unavailable. */ + /** The GPG verification service is unavailable at the moment. */ GPGVERIFY_UNAVAILABLE, - /** The unsigned. */ + /** Unsigned. */ UNSIGNED, - /** The unknown signature type. */ + /** Unknown signature type. */ UNKNOWN_SIGNATURE_TYPE, - /** The no user. */ + /** Email used for signing not known to GitHub. */ NO_USER, - /** The unverified email. */ + /** Email used for signing unverified on GitHub. */ UNVERIFIED_EMAIL, - /** The bad email. */ + /** Invalid email used for signing. */ BAD_EMAIL, - /** The unknown key. */ + /** Key used for signing not known to GitHub. */ UNKNOWN_KEY, - /** The malformed signature. */ + /** Malformed signature. */ MALFORMED_SIGNATURE, - /** The invalid. */ + /** Invalid signature. */ INVALID, - /** The valid. */ - VALID + /** Valid signature and verified by GitHub. */ + VALID, + + /** The signing certificate or its chain could not be verified. */ + BAD_CERT, + + /** Malformed signature. (Returned by graphQL) */ + MALFORMED_SIG, + + /** Valid signature, though certificate revocation check failed. */ + OCSP_ERROR, + + /** Valid signature, pending certificate revocation checking. */ + OCSP_PENDING, + + /** One or more certificates in chain has been revoked. */ + OCSP_REVOKED } } diff --git a/src/main/java/org/kohsuke/github/GHWorkflowRun.java b/src/main/java/org/kohsuke/github/GHWorkflowRun.java index 3ca37af8ed..a38450adbf 100644 --- a/src/main/java/org/kohsuke/github/GHWorkflowRun.java +++ b/src/main/java/org/kohsuke/github/GHWorkflowRun.java @@ -30,6 +30,7 @@ public class GHWorkflowRun extends GHObject { private GHRepository owner; private String name; + private String displayTitle; private long runNumber; private long workflowId; @@ -65,6 +66,15 @@ public String getName() { return name; } + /** + * The display title of the workflow run. + * + * @return the displayTitle + */ + public String getDisplayTitle() { + return displayTitle; + } + /** * The run number. * diff --git a/src/main/java/org/kohsuke/github/GitHub.java b/src/main/java/org/kohsuke/github/GitHub.java index 395faa9c08..ba33462b3a 100644 --- a/src/main/java/org/kohsuke/github/GitHub.java +++ b/src/main/java/org/kohsuke/github/GitHub.java @@ -915,6 +915,23 @@ public List getEvents() throws IOException { return createRequest().withUrlPath("/events").toIterable(GHEventInfo[].class, null).toList(); } + /** + * List public events for a user + * see + * API documentation + * + * @param login + * the login (user) to look public events for + * @return the events + * @throws IOException + * the io exception + */ + public List getUserPublicEvents(String login) throws IOException { + return createRequest().withUrlPath("/users/" + login + "/events/public") + .toIterable(GHEventInfo[].class, null) + .toList(); + } + /** * Gets a single gist by ID. * @@ -1169,6 +1186,38 @@ public GHApp getApp() throws IOException { return createRequest().withPreview(MACHINE_MAN).withUrlPath("/app").fetch(GHApp.class); } + /** + * Returns the GitHub App identified by the given slug + * + * @param slug + * the slug of the application + * @return the app + * @throws IOException + * the IO exception + * @see Get an app + */ + public GHApp getApp(@Nonnull String slug) throws IOException { + return createRequest().withUrlPath("/apps/" + slug).fetch(GHApp.class); + } + + /** + * Creates a GitHub App from a manifest. + * + * @param code + * temporary code returned during the manifest flow + * @return the app + * @throws IOException + * the IO exception + * @see Get an + * app + */ + public GHAppFromManifest createAppFromManifest(@Nonnull String code) throws IOException { + return createRequest().method("POST") + .withUrlPath("/app-manifests/" + code + "/conversions") + .fetch(GHAppFromManifest.class); + } + /** * Returns the GitHub App Installation associated with the authentication credentials used. *

diff --git a/src/main/java/org/kohsuke/github/GitHubClient.java b/src/main/java/org/kohsuke/github/GitHubClient.java index 73491d148d..cd18100d65 100644 --- a/src/main/java/org/kohsuke/github/GitHubClient.java +++ b/src/main/java/org/kohsuke/github/GitHubClient.java @@ -423,13 +423,13 @@ public GitHubResponse sendRequest(GitHubRequest request, @CheckForNull Bo throws IOException { int retries = CONNECTION_ERROR_RETRIES; GitHubConnectorRequest connectorRequest = prepareConnectorRequest(request); - do { GitHubConnectorResponse connectorResponse = null; try { logRequest(connectorRequest); rateLimitChecker.checkRateLimit(this, request.rateLimitTarget()); connectorResponse = connector.send(connectorRequest); + logResponse(connectorResponse); noteRateLimit(request.rateLimitTarget(), connectorResponse); detectKnownErrors(connectorResponse, request, handler != null); return createResponse(connectorResponse, handler); @@ -460,6 +460,7 @@ private void detectKnownErrors(GitHubConnectorResponse connectorResponse, boolean detectStatusCodeError) throws IOException { detectOTPRequired(connectorResponse); detectInvalidCached404Response(connectorResponse, request); + detectExpiredToken(connectorResponse, request); detectRedirect(connectorResponse); if (rateLimitHandler.isError(connectorResponse)) { rateLimitHandler.onError(connectorResponse); @@ -473,6 +474,22 @@ private void detectKnownErrors(GitHubConnectorResponse connectorResponse, } } + private void detectExpiredToken(GitHubConnectorResponse connectorResponse, GitHubRequest request) + throws IOException { + if (connectorResponse.statusCode() != HTTP_UNAUTHORIZED) { + return; + } + String originalAuthorization = connectorResponse.request().header("Authorization"); + if (Objects.isNull(originalAuthorization) || originalAuthorization.isEmpty()) { + return; + } + GitHubConnectorRequest updatedRequest = prepareConnectorRequest(request); + String updatedAuthorization = updatedRequest.header("Authorization"); + if (!originalAuthorization.equals(updatedAuthorization)) { + throw new RetryRequestException(updatedRequest); + } + } + private void detectRedirect(GitHubConnectorResponse connectorResponse) throws IOException { if (connectorResponse.statusCode() == HTTP_MOVED_PERM || connectorResponse.statusCode() == HTTP_MOVED_TEMP) { // GitHubClient depends on GitHubConnector implementations to follow any redirects automatically @@ -520,8 +537,23 @@ private GitHubConnectorRequest prepareConnectorRequest(GitHubRequest request) th private void logRequest(@Nonnull final GitHubConnectorRequest request) { LOGGER.log(FINE, - () -> "GitHub API request [" + (getLogin() == null ? "anonymous" : getLogin()) + "]: " - + request.method() + " " + request.url().toString()); + () -> String.format("(%s) GitHub API request [%s]: %s", + Integer.toHexString(request.hashCode()), + (getLogin() == null ? "anonymous" : getLogin()), + (request.method() + " " + request.url().toString()))); + } + + private void logResponse(@Nonnull final GitHubConnectorResponse response) { + LOGGER.log(FINE, () -> { + try { + return String.format("(%s) GitHub API response [%s]: %s", + Integer.toHexString(response.request().hashCode()), + (getLogin() == null ? "anonymous" : getLogin()), + (response.statusCode() + " " + GitHubResponse.getBodyAsString(response))); + } catch (IOException e) { + throw new RuntimeException(e); + } + }); } @Nonnull diff --git a/src/main/java/org/kohsuke/github/GitHubRequest.java b/src/main/java/org/kohsuke/github/GitHubRequest.java index 14641125b1..058f4d3b47 100644 --- a/src/main/java/org/kohsuke/github/GitHubRequest.java +++ b/src/main/java/org/kohsuke/github/GitHubRequest.java @@ -228,7 +228,7 @@ public String urlPath() { } /** - * The content type to to be sent by this request. + * The content type to be sent by this request. * * @return the content type. */ @@ -262,7 +262,7 @@ public URL url() { /** * Whether arguments for this request should be included in the URL or in the body of the request. * - * @return true if the arguements should be sent in the body of the request. + * @return true if the arguments should be sent in the body of the request. */ @Override public boolean hasBody() { diff --git a/src/main/java/org/kohsuke/github/authorization/AppInstallationAuthorizationProvider.java b/src/main/java/org/kohsuke/github/authorization/AppInstallationAuthorizationProvider.java new file mode 100644 index 0000000000..7ad33ede46 --- /dev/null +++ b/src/main/java/org/kohsuke/github/authorization/AppInstallationAuthorizationProvider.java @@ -0,0 +1,80 @@ +package org.kohsuke.github.authorization; + +import org.kohsuke.github.BetaApi; +import org.kohsuke.github.GHApp; +import org.kohsuke.github.GHAppInstallation; +import org.kohsuke.github.GHAppInstallationToken; +import org.kohsuke.github.GitHub; + +import java.io.IOException; +import java.time.Duration; +import java.time.Instant; +import java.util.Objects; + +import javax.annotation.Nonnull; + +/** + * An AuthorizationProvider that performs automatic token refresh for an organization's AppInstallation. + */ +public class AppInstallationAuthorizationProvider extends GitHub.DependentAuthorizationProvider { + + private final AppInstallationProvider appInstallationProvider; + + private String authorization; + + @Nonnull + private Instant validUntil = Instant.MIN; + + /** + * Provides an AuthorizationProvider that performs automatic token refresh, based on an previously authenticated + * github client. + * + * @param appInstallationProvider + * An AppInstallationProvider that the authorization provider will use to retrieve the App. + * @param authorizationProvider + * A authorization provider that returns a JWT token that can be used to refresh the App Installation + * token from GitHub. + */ + @BetaApi + public AppInstallationAuthorizationProvider(AppInstallationProvider appInstallationProvider, + AuthorizationProvider authorizationProvider) { + super(authorizationProvider); + this.appInstallationProvider = appInstallationProvider; + } + + @Override + public String getEncodedAuthorization() throws IOException { + synchronized (this) { + if (authorization == null || Instant.now().isAfter(this.validUntil)) { + String token = refreshToken(); + authorization = String.format("token %s", token); + } + return authorization; + } + } + + private String refreshToken() throws IOException { + GitHub gitHub = this.gitHub(); + GHAppInstallation installationByOrganization = appInstallationProvider.getAppInstallation(gitHub.getApp()); + GHAppInstallationToken ghAppInstallationToken = installationByOrganization.createToken().create(); + this.validUntil = ghAppInstallationToken.getExpiresAt().toInstant().minus(Duration.ofMinutes(5)); + return Objects.requireNonNull(ghAppInstallationToken.getToken()); + } + + /** + * Provides an interface that returns an app to be used by an AppInstallationAuthorizationProvider + */ + @FunctionalInterface + public interface AppInstallationProvider { + /** + * Provides a GHAppInstallation for the given GHApp + * + * @param app + * The GHApp to use + * @return The GHAppInstallation + * @throws IOException + * on error + */ + GHAppInstallation getAppInstallation(GHApp app) throws IOException; + } +} diff --git a/src/main/java/org/kohsuke/github/authorization/OrgAppInstallationAuthorizationProvider.java b/src/main/java/org/kohsuke/github/authorization/OrgAppInstallationAuthorizationProvider.java index d2437d3afb..5444e8ffef 100644 --- a/src/main/java/org/kohsuke/github/authorization/OrgAppInstallationAuthorizationProvider.java +++ b/src/main/java/org/kohsuke/github/authorization/OrgAppInstallationAuthorizationProvider.java @@ -1,28 +1,12 @@ package org.kohsuke.github.authorization; import org.kohsuke.github.BetaApi; -import org.kohsuke.github.GHAppInstallation; -import org.kohsuke.github.GHAppInstallationToken; -import org.kohsuke.github.GitHub; - -import java.io.IOException; -import java.time.Duration; -import java.time.Instant; -import java.util.Objects; - -import javax.annotation.Nonnull; /** * An AuthorizationProvider that performs automatic token refresh for an organization's AppInstallation. */ -public class OrgAppInstallationAuthorizationProvider extends GitHub.DependentAuthorizationProvider { - - private final String organizationName; - - private String authorization; - - @Nonnull - private Instant validUntil = Instant.MIN; +@Deprecated +public class OrgAppInstallationAuthorizationProvider extends AppInstallationAuthorizationProvider { /** * Provides an AuthorizationProvider that performs automatic token refresh, based on an previously authenticated @@ -33,31 +17,13 @@ public class OrgAppInstallationAuthorizationProvider extends GitHub.DependentAut * @param authorizationProvider * A authorization provider that returns a JWT token that can be used to refresh the App Installation * token from GitHub. + * + * @deprecated Replaced by {@link AppInstallationAuthorizationProvider} */ @BetaApi + @Deprecated public OrgAppInstallationAuthorizationProvider(String organizationName, AuthorizationProvider authorizationProvider) { - super(authorizationProvider); - this.organizationName = organizationName; - } - - @Override - public String getEncodedAuthorization() throws IOException { - synchronized (this) { - if (authorization == null || Instant.now().isAfter(this.validUntil)) { - String token = refreshToken(); - authorization = String.format("token %s", token); - } - return authorization; - } - } - - private String refreshToken() throws IOException { - GitHub gitHub = this.gitHub(); - GHAppInstallation installationByOrganization = gitHub.getApp() - .getInstallationByOrganization(this.organizationName); - GHAppInstallationToken ghAppInstallationToken = installationByOrganization.createToken().create(); - this.validUntil = ghAppInstallationToken.getExpiresAt().toInstant().minus(Duration.ofMinutes(5)); - return Objects.requireNonNull(ghAppInstallationToken.getToken()); + super(app -> app.getInstallationByOrganization(organizationName), authorizationProvider); } } diff --git a/src/main/java/org/kohsuke/github/example/dataobject/ReadOnlyObjects.java b/src/main/java/org/kohsuke/github/example/dataobject/ReadOnlyObjects.java index cc1432085a..fb6a517fdf 100644 --- a/src/main/java/org/kohsuke/github/example/dataobject/ReadOnlyObjects.java +++ b/src/main/java/org/kohsuke/github/example/dataobject/ReadOnlyObjects.java @@ -94,7 +94,7 @@ public interface GHMetaExample { *

    *
  • Easy to create
  • *
  • Not much code
  • - *
  • Mininal annotations
  • + *
  • Minimal annotations
  • *
* Con: *
    @@ -373,7 +373,7 @@ void setImporter(List importer) { *
      *
    • Very Easy to create
    • *
    • Minimal code
    • - *
    • Mininal annotations
    • + *
    • Minimal annotations
    • *
    • Fields effectively final and lists unmodifiable
    • *
    * Con: diff --git a/src/main/java/org/kohsuke/github/extras/authorization/JWTTokenProvider.java b/src/main/java/org/kohsuke/github/extras/authorization/JWTTokenProvider.java index dc61cfd46c..85ed1f69ed 100644 --- a/src/main/java/org/kohsuke/github/extras/authorization/JWTTokenProvider.java +++ b/src/main/java/org/kohsuke/github/extras/authorization/JWTTokenProvider.java @@ -3,6 +3,7 @@ import io.jsonwebtoken.JwtBuilder; import io.jsonwebtoken.Jwts; import io.jsonwebtoken.SignatureAlgorithm; +import io.jsonwebtoken.jackson.io.JacksonSerializer; import org.kohsuke.github.authorization.AuthorizationProvider; import java.io.File; @@ -122,7 +123,7 @@ public String getEncodedAuthorization() throws IOException { *

    * Made internal for testing * - * @return false if the the token has been refreshed within the required window, otherwise true + * @return false if the token has been refreshed within the required window, otherwise true */ boolean isNotValid() { return Instant.now().isAfter(validUntil); @@ -181,7 +182,7 @@ private String refreshJWT() { validUntil = expiration.minus(Duration.ofMinutes(2)); // Builds the JWT and serializes it to a compact, URL-safe string - return builder.compact(); + return builder.serializeToJsonWith(new JacksonSerializer<>()).compact(); } Instant getIssuedAt(Instant now) { diff --git a/src/main/java/org/kohsuke/github/internal/GitHubConnectorHttpConnectorAdapter.java b/src/main/java/org/kohsuke/github/internal/GitHubConnectorHttpConnectorAdapter.java index 01417e08dd..3dc0e9d7b0 100644 --- a/src/main/java/org/kohsuke/github/internal/GitHubConnectorHttpConnectorAdapter.java +++ b/src/main/java/org/kohsuke/github/internal/GitHubConnectorHttpConnectorAdapter.java @@ -83,7 +83,7 @@ public GitHubConnectorResponse send(GitHubConnectorRequest request) throws IOExc } // HttpUrlConnection is nuts. This call opens the connection and gets a response. - // Putting this on it's own line for ease of debugging if needed. + // Putting this on its own line for ease of debugging if needed. int statusCode = connection.getResponseCode(); Map> headers = connection.getHeaderFields(); diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt index 2463ad1e16..abae7ae2b9 100644 --- a/src/site/apt/index.apt +++ b/src/site/apt/index.apt @@ -140,9 +140,9 @@ Pluggable HTTP client This library comes with a pluggable connector to use different HTTP client implementations through <<>>. In particular, this means you can use {{{https://square.github.io/okhttp/}OkHttp}}, - so we can make use of it's HTTP response cache. + so we can make use of its HTTP response cache. Making a conditional request against the GitHub API and receiving a 304 response - {{{https://developer.github.com/v3/#conditional-requests}does not count against the rate limit}}. + {{{https://docs.github.com/en/rest/overview/resources-in-the-rest-api?apiVersion=2022-11-28#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: diff --git a/src/test/java/org/kohsuke/github/AbstractGHAppInstallationTest.java b/src/test/java/org/kohsuke/github/AbstractGHAppInstallationTest.java index 40b9b0bdbf..da7d7f2f96 100644 --- a/src/test/java/org/kohsuke/github/AbstractGHAppInstallationTest.java +++ b/src/test/java/org/kohsuke/github/AbstractGHAppInstallationTest.java @@ -1,5 +1,6 @@ package org.kohsuke.github; +import com.google.common.collect.ImmutableSet; import io.jsonwebtoken.Jwts; import org.apache.commons.io.IOUtils; import org.kohsuke.github.authorization.AuthorizationProvider; @@ -9,6 +10,7 @@ import java.io.IOException; import java.nio.charset.StandardCharsets; import java.nio.file.Files; +import java.nio.file.Paths; import java.security.GeneralSecurityException; import java.security.KeyFactory; import java.security.PrivateKey; @@ -17,6 +19,7 @@ import java.time.temporal.ChronoUnit; import java.util.Base64; import java.util.Date; +import java.util.List; // TODO: Auto-generated Javadoc /** @@ -24,6 +27,11 @@ */ public class AbstractGHAppInstallationTest extends AbstractGitHubWireMockTest { + private static String ENV_GITHUB_APP_ID = "GITHUB_APP_ID"; + private static String ENV_GITHUB_APP_JWK_PATH = "GITHUB_APP_JWK_PATH"; + private static String ENV_GITHUB_APP_ORG = "GITHUB_APP_ORG"; + private static String ENV_GITHUB_APP_REPO = "GITHUB_APP_REPO"; + private static String TEST_APP_ID_1 = "82994"; private static String TEST_APP_ID_2 = "83009"; private static String TEST_APP_ID_3 = "89368"; @@ -44,16 +52,23 @@ public class AbstractGHAppInstallationTest extends AbstractGitHubWireMockTest { * Instantiates a new abstract GH app installation test. */ protected AbstractGHAppInstallationTest() { + String appId = System.getenv(ENV_GITHUB_APP_ID); + String appJwkPath = System.getenv(ENV_GITHUB_APP_JWK_PATH); try { - jwtProvider1 = new JWTTokenProvider(TEST_APP_ID_1, - new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_1).getFile())); - jwtProvider2 = new JWTTokenProvider(TEST_APP_ID_2, - new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_2).getFile()).toPath()); - jwtProvider3 = new JWTTokenProvider(TEST_APP_ID_3, - new String( - Files.readAllBytes( - new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_3).getFile()).toPath()), - StandardCharsets.UTF_8)); + if (appId != null && appJwkPath != null) { + jwtProvider1 = new JWTTokenProvider(appId, Paths.get(appJwkPath)); + jwtProvider2 = jwtProvider1; + jwtProvider3 = jwtProvider1; + } else { + jwtProvider1 = new JWTTokenProvider(TEST_APP_ID_1, + new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_1).getFile())); + jwtProvider2 = new JWTTokenProvider(TEST_APP_ID_2, + new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_2).getFile()).toPath()); + jwtProvider3 = new JWTTokenProvider(TEST_APP_ID_3, + new String(Files.readAllBytes( + new File(this.getClass().getResource(PRIVATE_KEY_FILE_APP_3).getFile()).toPath()), + StandardCharsets.UTF_8)); + } } catch (GeneralSecurityException | IOException e) { throw new RuntimeException("These should never fail", e); } @@ -89,17 +104,28 @@ private String createJwtToken(String keyFileResouceName, String appId) { * Signals that an I/O exception has occurred. */ protected GHAppInstallation getAppInstallationWithToken(String jwtToken) throws IOException { + if (jwtToken.startsWith("Bearer ")) { + jwtToken = jwtToken.substring("Bearer ".length()); + } + GitHub gitHub = getGitHubBuilder().withJwtToken(jwtToken) .withEndpoint(mockGitHub.apiServer().baseUrl()) .build(); - GHAppInstallation appInstallation = gitHub.getApp() - .listInstallations() - .toList() - .stream() - .filter(it -> it.getAccount().login.equals("hub4j-test-org")) - .findFirst() - .get(); + GHApp app = gitHub.getApp(); + + GHAppInstallation appInstallation; + if (ImmutableSet.of(TEST_APP_ID_1, TEST_APP_ID_2, TEST_APP_ID_3).contains(Long.toString(app.getId()))) { + List installations = app.listInstallations().toList(); + appInstallation = installations.stream() + .filter(it -> it.getAccount().login.equals("hub4j-test-org")) + .findFirst() + .get(); + } else { + // We may be processing a custom JWK, for a custom GHApp: fetch a relevant repository dynamically + appInstallation = app.getInstallationByRepository(System.getenv(ENV_GITHUB_APP_ORG), + System.getenv(ENV_GITHUB_APP_REPO)); + } // TODO: this is odd // appInstallation diff --git a/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java b/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java index 990583c945..044a7122ec 100644 --- a/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java +++ b/src/test/java/org/kohsuke/github/AbstractGitHubWireMockTest.java @@ -226,7 +226,7 @@ protected GHRepository getTempRepository() throws IOException { * Creates a temporary repository that will be deleted at the end of the test. * * @param name - * string name of the the repository + * string name of the repository * * @return a temporary repository * @throws IOException diff --git a/src/test/java/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest.java b/src/test/java/org/kohsuke/github/AppInstallationAuthorizationProviderTest.java similarity index 55% rename from src/test/java/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest.java rename to src/test/java/org/kohsuke/github/AppInstallationAuthorizationProviderTest.java index 4b4549a6f5..092a4dd1fd 100644 --- a/src/test/java/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest.java +++ b/src/test/java/org/kohsuke/github/AppInstallationAuthorizationProviderTest.java @@ -1,6 +1,7 @@ package org.kohsuke.github; import org.junit.Test; +import org.kohsuke.github.authorization.AppInstallationAuthorizationProvider; import org.kohsuke.github.authorization.ImmutableAuthorizationProvider; import org.kohsuke.github.authorization.OrgAppInstallationAuthorizationProvider; @@ -8,17 +9,19 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.notNullValue; +import static org.hamcrest.CoreMatchers.startsWith; // TODO: Auto-generated Javadoc + /** - * The Class OrgAppInstallationAuthorizationProviderTest. + * The Class AppInstallationAuthorizationProviderTest. */ -public class OrgAppInstallationAuthorizationProviderTest extends AbstractGHAppInstallationTest { +public class AppInstallationAuthorizationProviderTest extends AbstractGHAppInstallationTest { /** * Instantiates a new org app installation authorization provider test. */ - public OrgAppInstallationAuthorizationProviderTest() { + public AppInstallationAuthorizationProviderTest() { useDefaultGitHub = false; } @@ -48,7 +51,8 @@ public void invalidJWTTokenRaisesException() throws IOException { */ @Test public void validJWTTokenAllowsOauthTokenRequest() throws IOException { - OrgAppInstallationAuthorizationProvider provider = new OrgAppInstallationAuthorizationProvider("hub4j-test-org", + AppInstallationAuthorizationProvider provider = new AppInstallationAuthorizationProvider( + app -> app.getInstallationByOrganization("hub4j-test-org"), ImmutableAuthorizationProvider.fromJwtToken("bogus-valid-token")); gitHub = getGitHubBuilder().withAuthorizationProvider(provider) .withEndpoint(mockGitHub.apiServer().baseUrl()) @@ -59,4 +63,27 @@ public void validJWTTokenAllowsOauthTokenRequest() throws IOException { assertThat(encodedAuthorization, equalTo("token v1.9a12d913f980a45a16ac9c3a9d34d9b7sa314cb6")); } + /** + * Lookup of an app by id works as expected + * + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Test + public void validJWTTokenWhenLookingUpAppById() throws IOException { + AppInstallationAuthorizationProvider provider = new AppInstallationAuthorizationProvider( + // https://github.com/organizations/hub4j-test-org/settings/installations/12129901 + app -> app.getInstallationById(12129901L), + jwtProvider1); + gitHub = getGitHubBuilder().withAuthorizationProvider(provider) + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .build(); + String encodedAuthorization = provider.getEncodedAuthorization(); + + assertThat(encodedAuthorization, notNullValue()); + // we could assert on the exact token with wiremock, but it would make the update of the test more complex + // do we really care, getting a token should be enough. + assertThat(encodedAuthorization, startsWith("token ghs_")); + } + } diff --git a/src/test/java/org/kohsuke/github/AppTest.java b/src/test/java/org/kohsuke/github/AppTest.java index f8d7a39892..f2d68fe7fb 100755 --- a/src/test/java/org/kohsuke/github/AppTest.java +++ b/src/test/java/org/kohsuke/github/AppTest.java @@ -1036,6 +1036,30 @@ public void testEventApi() throws Exception { } } + /** + * Test user public event api. + * + * @throws Exception + * the exception + */ + @Test + public void testUserPublicEventApi() throws Exception { + for (GHEventInfo ev : gitHub.getUserPublicEvents("PierreBtz")) { + if (ev.getType() == GHEvent.PULL_REQUEST) { + if (ev.getId() == 27449881624L) { + assertThat(ev.getActorLogin(), equalTo("PierreBtz")); + assertThat(ev.getOrganization().getLogin(), equalTo("hub4j")); + assertThat(ev.getRepository().getFullName(), equalTo("hub4j/github-api")); + assertThat(ev.getCreatedAt(), equalTo(GitHubClient.parseDate("2023-03-02T16:37:49Z"))); + assertThat(ev.getType(), equalTo(GHEvent.PULL_REQUEST)); + } + + GHEventPayload.PullRequest pr = ev.getPayload(GHEventPayload.PullRequest.class); + assertThat(pr.getNumber(), is(pr.getPullRequest().getNumber())); + } + } + } + /** * Test app. * @@ -1283,18 +1307,43 @@ public void directoryListing() throws IOException { * @throws IOException * Signals that an I/O exception has occurred. */ - @Ignore("Needs mocking check") @Test public void testAddDeployKey() throws IOException { GHRepository myRepository = getTestRepository(); final GHDeployKey newDeployKey = myRepository.addDeployKey("test", - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDUt0RAycC5cS42JKh6SecfFZBR1RrF+2hYMctz4mk74/arBE+wFb7fnSHGzdGKX2h5CFOWODifRCJVhB7hlVxodxe+QkQQYAEL/x1WVCJnGgTGQGOrhOMj95V3UE5pQKhsKD608C+u5tSofcWXLToP1/wZ7U4/AHjqYi08OLsWToHCax55TZkvdt2jo0hbIoYU+XI9Q8Uv4ONDN1oabiOdgeKi8+crvHAuvNleiBhWVBzFh8KdfzaH5uNdw7ihhFjEd1vzqACsjCINCjdMfzl6jD9ExuWuE92nZJnucls2cEoNC6k2aPmrZDg9hA32FXVpyseY+bDUWFU6LO2LG6PB kohsuke@atlas"); + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9 test@example.com"); + try { + assertThat(newDeployKey.getId(), notNullValue()); + + GHDeployKey k = Iterables.find(myRepository.getDeployKeys(), new Predicate() { + public boolean apply(GHDeployKey deployKey) { + return newDeployKey.getId() == deployKey.getId() && !deployKey.isRead_only(); + } + }); + assertThat(k, notNullValue()); + } finally { + newDeployKey.delete(); + } + } + + /** + * Test add deploy key read-only. + * + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Test + public void testAddDeployKeyAsReadOnly() throws IOException { + GHRepository myRepository = getTestRepository(); + final GHDeployKey newDeployKey = myRepository.addDeployKey("test", + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9 test@example.com", + true); try { assertThat(newDeployKey.getId(), notNullValue()); GHDeployKey k = Iterables.find(myRepository.getDeployKeys(), new Predicate() { public boolean apply(GHDeployKey deployKey) { - return newDeployKey.getId() == deployKey.getId(); + return newDeployKey.getId() == deployKey.getId() && deployKey.isRead_only(); } }); assertThat(k, notNullValue()); diff --git a/src/test/java/org/kohsuke/github/ArchTests.java b/src/test/java/org/kohsuke/github/ArchTests.java index 598b6383d4..a460dc7db8 100644 --- a/src/test/java/org/kohsuke/github/ArchTests.java +++ b/src/test/java/org/kohsuke/github/ArchTests.java @@ -25,12 +25,12 @@ import java.lang.reflect.Field; import java.nio.charset.Charset; import java.util.Arrays; +import java.util.stream.Collectors; import static com.google.common.base.Preconditions.checkNotNull; import static com.tngtech.archunit.core.domain.JavaCall.Predicates.target; import static com.tngtech.archunit.core.domain.JavaClass.Predicates.resideInAPackage; import static com.tngtech.archunit.core.domain.JavaClass.Predicates.type; -import static com.tngtech.archunit.core.domain.JavaClass.namesOf; import static com.tngtech.archunit.core.domain.properties.HasName.Predicates.name; import static com.tngtech.archunit.core.domain.properties.HasName.Predicates.nameContaining; import static com.tngtech.archunit.core.domain.properties.HasOwner.Predicates.With.owner; @@ -61,7 +61,7 @@ public class ArchTests { "preview has no required media types defined") { @Override - public boolean apply(JavaAnnotation javaAnnotation) { + public boolean test(JavaAnnotation javaAnnotation) { boolean isPreview = javaAnnotation.getRawType().isEquivalentTo(Preview.class); Object[] values = (Object[]) javaAnnotation.getProperties().get("value"); return isPreview && values != null && values.length < 1; @@ -128,6 +128,7 @@ public void testRequireUseOfOnlySpecificApacheCommons() { targetMethodIs(ToStringBuilder.class, "append", String.class, Object.class), targetMethodIs(ToStringBuilder.class, "append", String.class, long.class), targetMethodIs(ToStringBuilder.class, "append", String.class, int.class), + targetMethodIs(ToStringBuilder.class, "append", String.class, boolean.class), targetMethodIs(ToStringBuilder.class, "isEmpty"), targetMethodIs(ToStringBuilder.class, "equals"), targetMethodIs(ToStringBuilder.class, "capitalize"), @@ -193,7 +194,11 @@ public static DescribedPredicate> targetMethodIs(Class owner, .and(JavaCall.Predicates.target(name(methodName))) .and(JavaCall.Predicates.target(rawParameterTypes(parameterTypes))) .as("method is %s", - Formatters.formatMethodSimple(owner.getSimpleName(), methodName, namesOf(parameterTypes))); + Formatters.formatMethodSimple(owner.getSimpleName(), + methodName, + Arrays.stream(parameterTypes) + .map(item -> item.getName()) + .collect(Collectors.toList()))); } /** @@ -223,8 +228,8 @@ private static class UnlessPredicate extends DescribedPredicate { } @Override - public boolean apply(T input) { - return current.apply(input) && !other.apply(input); + public boolean test(T input) { + return current.test(input) && !other.test(input); } } } diff --git a/src/test/java/org/kohsuke/github/CommitTest.java b/src/test/java/org/kohsuke/github/CommitTest.java index 81f83f28ba..257e681cca 100644 --- a/src/test/java/org/kohsuke/github/CommitTest.java +++ b/src/test/java/org/kohsuke/github/CommitTest.java @@ -32,13 +32,13 @@ public void lastStatus() throws IOException { } /** - * List files. + * Test get files. * * @throws Exception * the exception */ @Test // issue 230 - public void listFiles() throws Exception { + public void getFiles() throws Exception { GHRepository repo = gitHub.getRepository("stapler/stapler"); PagedIterable commits = repo.queryCommits().path("pom.xml").list(); for (GHCommit commit : Iterables.limit(commits, 10)) { @@ -47,6 +47,49 @@ public void listFiles() throws Exception { } } + /** + * Test list files where there are less than 300 files in a commit. + * + * @throws Exception + * the exception + */ + @Test // issue 1669 + public void listFilesWhereCommitHasSmallChange() throws Exception { + GHRepository repo = getRepository(); + GHCommit commit = repo.getCommit("dabf0e89fe7107d6e294a924561533ecf80f2384"); + + assertThat(commit.listFiles().toList().size(), equalTo(28)); + } + + /** + * Test list files where there are more than 300 files in a commit. + * + * @throws Exception + * the exception + */ + @Test // issue 1669 + public void listFilesWhereCommitHasLargeChange() throws Exception { + GHRepository repo = getRepository(); + GHCommit commit = repo.getCommit("b83812aa76bb7c3c43da96fbf8aec1e45db87624"); + + assertThat(commit.listFiles().toList().size(), equalTo(691)); + } + + /** + * Tests the commit message. + * + * @throws Exception + * the exception + */ + @Test + public void getMessage() throws Exception { + GHRepository repo = getRepository(); + GHCommit commit = repo.getCommit("dabf0e89fe7107d6e294a924561533ecf80f2384"); + + assertThat(commit.getCommitShortInfo().getMessage(), notNullValue()); + assertThat(commit.getCommitShortInfo().getMessage(), equalTo("A commit with a few files")); + } + /** * Test query commits. * @@ -288,4 +331,19 @@ public void commitDateNotNull() throws Exception { assertThat(commit.getCommitShortInfo().getCommitDate(), equalTo(commit.getCommitShortInfo().getCommitter().getDate())); } + + /** + * Gets the repository. + * + * @return the repository + * @throws IOException + * Signals that an I/O exception has occurred. + */ + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("hub4j-test-org").getRepository("CommitTest"); + } } diff --git a/src/test/java/org/kohsuke/github/EnumTest.java b/src/test/java/org/kohsuke/github/EnumTest.java index a21d017497..939c6360e3 100644 --- a/src/test/java/org/kohsuke/github/EnumTest.java +++ b/src/test/java/org/kohsuke/github/EnumTest.java @@ -32,7 +32,7 @@ public void touchEnums() { assertThat(GHDirection.values().length, equalTo(2)); - assertThat(GHEvent.values().length, equalTo(64)); + assertThat(GHEvent.values().length, equalTo(65)); assertThat(GHEvent.ALL.symbol(), equalTo("*")); assertThat(GHEvent.PULL_REQUEST.symbol(), equalTo(GHEvent.PULL_REQUEST.toString().toLowerCase())); @@ -55,7 +55,7 @@ public void touchEnums() { assertThat(GHOrganization.Role.values().length, equalTo(2)); assertThat(GHOrganization.Permission.values().length, equalTo(5)); - assertThat(GHPermissionType.values().length, equalTo(4)); + assertThat(GHPermissionType.values().length, equalTo(5)); assertThat(GHProject.ProjectState.values().length, equalTo(2)); assertThat(GHProject.ProjectStateFilter.values().length, equalTo(3)); diff --git a/src/test/java/org/kohsuke/github/GHAppExtendedTest.java b/src/test/java/org/kohsuke/github/GHAppExtendedTest.java new file mode 100644 index 0000000000..a419f0945a --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHAppExtendedTest.java @@ -0,0 +1,59 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; + +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.is; + +/** + * Tests for the GitHub App Api Test + * + * @author Daniel Baur + */ +public class GHAppExtendedTest extends AbstractGitHubWireMockTest { + + private static final String APP_SLUG = "ghapi-test-app-4"; + + /** + * Gets the GitHub App by its slug. + * + * @throws IOException + * An IOException has occurred. + */ + @Test + public void getAppBySlugTest() throws IOException { + GHApp app = gitHub.getApp(APP_SLUG); + + assertThat(app.getId(), is((long) 330762)); + assertThat(app.getSlug(), equalTo(APP_SLUG)); + assertThat(app.getName(), equalTo("GHApi Test app 4")); + assertThat(app.getExternalUrl(), equalTo("https://github.com/organizations/hub4j-test-org")); + assertThat(app.getHtmlUrl().toString(), equalTo("https://github.com/apps/ghapi-test-app-4")); + assertThat(app.getDescription(), equalTo("An app to test the GitHub getApp(slug) method.")); + } + + /** + * Tests App creation via the App Manifest Flow. + * + * The used code defined below was only valid for a short time, meaning that you can not replay the test against the + * GitHub API. Use the stored wire snapshot for executing those tests. + * + * @throws IOException + * An IOException has occurred. + */ + @Test + public void createAppByManifestFlowTest() throws IOException { + snapshotNotAllowed(); + GHAppFromManifest appFromManifest = gitHub.createAppFromManifest("46fbe5453b245dee21b96753f80eace209a3cf01"); + + assertThat(appFromManifest.getClientId(), equalTo("Iv1.1c63d0b87c03d42e")); + assertThat(appFromManifest.getWebhookSecret(), equalTo("f4dafa9b05d8248d81f65f0e6cb108cb8bb76a0c")); + assertThat(appFromManifest.getClientSecret(), equalTo("f4b60603e85b3965492b393bca0809a914dcdf18")); + assertThat(appFromManifest.getPem(), + equalTo("-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEA4UT2qvDbMK3hQtvrK7wu7y7B6hypYhsXyD6GN22Bcn3JZdSI\nWm/zhRMH/vKwU5r67YKcJCchHVbvLRWNt911r85D0uLMPIjOkdL+cnSOa5yRhTJy\nI/RhZqx8yoXHSSE5ToKwfPAn3hiv8N2gQEsEpWxdycqPOg7paFsAJ5hjstmS09uU\nKwrFcCQdWuidRnwn6bdgGt+bL9dsvRd4RDoP5sZj5pLNo1y8N9DnFvHihd1rQxQS\nIf9sRgGPDLasNkLvMdxKnsDTsufRBmmw72iaTJXc+EVZw2jYKrOjRVechTMEfbRp\nQRVZw9vysT2XhDB9J4bbJ6NopP/c7JC1ihUJfQIDAQABAoIBAQC0DwubVyncnx+O\n8XnoW2KojBczqfU6Fa3MwS1G4KC3gxOX8WmL4DAmDjA1+IY4TYiEkAF+ZEhzyyki\nQDgm3z1SaOyNg/r75941cRExKzkritpGPSw+0PeJuhWFS6kfKw9DUfL/6nXzcIgx\nXvTYbx4nm5bb1KznG0Q1xYc6HvSR3xb3DcXWXkRX6sMEX4J3M/x0PWxPWnDGvlBJ\nQyDgfqpOa6kra5uSm8qoHtb7httwE/a5NZ9P5jeLk3wXaQmCEl4RDEgSGeR4AOf5\nXVTWP936sVA3vBLd6LmddO3ZEE1HZhlb2XWnxCnGSKL4LoFZE7Jhf2Alp32nm0gm\nwsrQoVgBAoGBAPjxzs3Umlle0EZbfJa8c4rFPOJmMkL07aQu8PAAHiNGcbzzfUmK\n7kfNYXktHKB6pjyjkXEQrLCm9wdqCqI70wJ+AVn6E/0Z1ojPALIxdrjQuNS9xjRo\nCUAQqEXe+IWBZVArgy7t3to7XkAHrj+ky96eAhlsb88c9qiWtS7biXPtAoGBAOen\nYgTe8SbWdBRh7mqDgx9eruB6UCOt8BUlb1uFyt1kpCLZVelw1JYs7hq+roTdKds0\ny9pu+E6I7+g6LsVtjkMqf/VXuY0qomf9hbNE9Yj/Tqty5B4xU+gj01MCm5RRln9M\nKGKCeJAPDB5AEmyidPvLbPp5U6Rniu0Ds+AJ0FnRAoGBAMro/bGTuwNhXs4aP+D1\nVhAkWE4JEqq0zQZoJIba8bW683YZ2WMaVMI9y1djx9OeZOVERYYtGzUZwnxOmMBH\nluSPJDbcuXIxn0X/xAd6fdSCfEUbMfUBX5jSevYImfTn1VaVQOX9iQnEHjx+hi7l\n+i5ICFoEotXkO8CKpr+8vbq5AoGAOCfkZAfjb6XHB/XhhOKSk7UxMWuVJ8EPlSC5\nCPe7AMZX37bN08QtVKZZphQZXE38yo3W6QHDoc4iUipgki2HshKIaGI2sdjm+8yC\nb73Ew8wYNwmn8QXGMF0W6mWUb3UDxaIhnBfCwDFVn7Oqg7kyIKPkrCdjNlR/Ygtm\nvGXEozECgYAFpzntJpUdYN4OxutpNXdnTgN0CJ3TECkk/+0xbTHoWNuMpJ5dR/yQ\n7RLxwcu8CqizXCB750jSgHlWk5GF1yAQzFO9ozjx/mxdPp1PxHaeN/5kmx8VjT8W\nL7zhUMfZLeDMpIbQ/3gyq0EUxxHIEJc2Mx42C9/OY/fkEuZPFSEL2A==\n-----END RSA PRIVATE KEY-----\n")); + + } + +} diff --git a/src/test/java/org/kohsuke/github/GHAppInstallationTest.java b/src/test/java/org/kohsuke/github/GHAppInstallationTest.java index a54535eb08..1a380a9739 100644 --- a/src/test/java/org/kohsuke/github/GHAppInstallationTest.java +++ b/src/test/java/org/kohsuke/github/GHAppInstallationTest.java @@ -44,4 +44,21 @@ public void testListRepositoriesNoPermissions() throws IOException { appInstallation.listRepositories().toList().isEmpty()); } + /** + * Test list repositories no permissions. + * + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Test + public void testGetMarketplaceAccount() throws IOException { + GHAppInstallation appInstallation = getAppInstallationWithToken(jwtProvider3.getEncodedAuthorization()); + + GHMarketplaceAccountPlan marketplaceAccount = appInstallation.getMarketplaceAccount(); + GHMarketplacePlanTest.testMarketplaceAccount(marketplaceAccount); + + GHMarketplaceAccountPlan plan = marketplaceAccount.getPlan(); + assertThat(plan.getType(), equalTo(GHMarketplaceAccountType.ORGANIZATION)); + } + } diff --git a/src/test/java/org/kohsuke/github/GHAuthenticatedAppInstallationTest.java b/src/test/java/org/kohsuke/github/GHAuthenticatedAppInstallationTest.java index f02bf5814b..4461ccbc8a 100644 --- a/src/test/java/org/kohsuke/github/GHAuthenticatedAppInstallationTest.java +++ b/src/test/java/org/kohsuke/github/GHAuthenticatedAppInstallationTest.java @@ -1,7 +1,7 @@ package org.kohsuke.github; import org.junit.Test; -import org.kohsuke.github.authorization.OrgAppInstallationAuthorizationProvider; +import org.kohsuke.github.authorization.AppInstallationAuthorizationProvider; import java.io.IOException; import java.util.List; @@ -22,7 +22,8 @@ public class GHAuthenticatedAppInstallationTest extends AbstractGHAppInstallatio */ @Override protected GitHubBuilder getGitHubBuilder() { - OrgAppInstallationAuthorizationProvider provider = new OrgAppInstallationAuthorizationProvider("hub4j-test-org", + AppInstallationAuthorizationProvider provider = new AppInstallationAuthorizationProvider( + app -> app.getInstallationByOrganization("hub4j-test-org"), jwtProvider1); return super.getGitHubBuilder().withAuthorizationProvider(provider); } diff --git a/src/test/java/org/kohsuke/github/GHCodeownersErrorTest.java b/src/test/java/org/kohsuke/github/GHCodeownersErrorTest.java new file mode 100644 index 0000000000..b4294be64e --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHCodeownersErrorTest.java @@ -0,0 +1,55 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.util.List; + +import static org.hamcrest.Matchers.*; + +/** + * Test class for listing errors in CODEOWNERS files. + * + * @author Michael Grant + */ +public class GHCodeownersErrorTest extends AbstractGitHubWireMockTest { + + /** + * Gets the {@code CODEOWNERS} errors. + * + * @throws IOException + * the exception + */ + @Test + public void testGetCodeownersErrors() throws IOException { + final GHRepository repo = getRepository(gitHub); + final List codeownersErrors = repo.listCodeownersErrors(); + assertThat(codeownersErrors.size(), is(1)); + final GHCodeownersError firstError = codeownersErrors.get(0); + assertThat(firstError.getLine(), is(1)); + assertThat(firstError.getColumn(), is(3)); + assertThat(firstError.getKind(), is("Unknown owner")); + assertThat(firstError.getSource(), + is("* @nonexistent-user # Deliberate error to test response to repo.listCodeownersErrors()\n")); + assertThat(firstError.getSuggestion(), + is("make sure @nonexistent-user exists and has write access to the repository")); + assertThat(firstError.getMessage(), + is("Unknown owner on line 1: make sure @nonexistent-user exists and has write access to the repository\n\n * @nonexistent-user # Deliberate error to test response to repo.listCodeownersErrors()\n ^")); + assertThat(firstError.getPath(), is(".github/CODEOWNERS")); + } + + /** + * Gets the repository. + * + * @return the repository + * @throws IOException + * Signals that an I/O exception has occurred. + */ + 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/GHDeployKeyTest.java b/src/test/java/org/kohsuke/github/GHDeployKeyTest.java new file mode 100644 index 0000000000..35d321888c --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHDeployKeyTest.java @@ -0,0 +1,81 @@ +package org.kohsuke.github; + +import org.junit.Test; + +import java.io.IOException; +import java.time.Instant; +import java.util.Date; +import java.util.List; +import java.util.Optional; + +import static com.github.npathai.hamcrestopt.OptionalMatchers.isPresent; +import static org.hamcrest.Matchers.*; + +/** + * The Class GHDeployKeyTest. + * + * @author Jonas van Vliet + */ +public class GHDeployKeyTest extends AbstractGitHubWireMockTest { + private static final String DEPLOY_KEY_TEST_REPO_NAME = "hub4j-test-org/GHDeployKeyTest"; + private static final String ED_25519_READONLY = "DeployKey - ed25519 - readonly"; + private static final String RSA_4096_READWRITE = "Deploykey - rsa4096 - readwrite"; + private static final String KEY_CREATOR_USERNAME = "van-vliet"; + + /** + * Test get deploymentkeys. + * + * @throws IOException + * Signals that an I/O exception has occurred. + */ + @Test + public void testGetDeployKeys() throws IOException { + final GHRepository repo = getRepository(); + final List deployKeys = repo.getDeployKeys(); + assertThat("There should be 2 deploykeys in " + DEPLOY_KEY_TEST_REPO_NAME, deployKeys, hasSize(2)); + + Optional ed25519Key = deployKeys.stream() + .filter(key -> key.getTitle().equals(ED_25519_READONLY)) + .findAny(); + assertThat("The key exists", ed25519Key, isPresent()); + assertThat("The key was created at the specified date", + ed25519Key.get().getCreatedAt(), + is(Date.from(Instant.parse("2023-02-08T10:00:15.00Z")))); + assertThat("The key is created by " + KEY_CREATOR_USERNAME, + ed25519Key.get().getAdded_by(), + is(KEY_CREATOR_USERNAME)); + assertThat("The key has a last_used value", + ed25519Key.get().getLastUsedAt(), + is(Date.from(Instant.parse("2023-02-08T10:02:11.00Z")))); + assertThat("The key only has read access", ed25519Key.get().isRead_only(), is(true)); + assertThat("Object has a toString()", ed25519Key.get().toString(), is(notNullValue())); + + Optional rsa_4096Key = deployKeys.stream() + .filter(key -> key.getTitle().equals(RSA_4096_READWRITE)) + .findAny(); + assertThat("The key exists", rsa_4096Key, isPresent()); + assertThat("The key was created at the specified date", + rsa_4096Key.get().getCreatedAt(), + is(Date.from(Instant.parse("2023-01-26T14:12:12.00Z")))); + assertThat("The key is created by " + KEY_CREATOR_USERNAME, + rsa_4096Key.get().getAdded_by(), + is(KEY_CREATOR_USERNAME)); + assertThat("The key has never been used", rsa_4096Key.get().getLastUsedAt(), is(nullValue())); + assertThat("The key only has read/write access", rsa_4096Key.get().isRead_only(), is(false)); + } + + /** + * Gets the repository. + * + * @return the repository + * @throws IOException + * Signals that an I/O exception has occurred. + */ + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(final GitHub gitHub) throws IOException { + return gitHub.getRepository(DEPLOY_KEY_TEST_REPO_NAME); + } +} diff --git a/src/test/java/org/kohsuke/github/GHEventPayloadTest.java b/src/test/java/org/kohsuke/github/GHEventPayloadTest.java index 1b3be27bd4..2400218a16 100644 --- a/src/test/java/org/kohsuke/github/GHEventPayloadTest.java +++ b/src/test/java/org/kohsuke/github/GHEventPayloadTest.java @@ -1062,6 +1062,7 @@ public void workflow_run() throws Exception { assertThat(workflowRun.getId(), is(680604745L)); assertThat(workflowRun.getName(), is("CI")); assertThat(workflowRun.getHeadBranch(), is("main")); + assertThat(workflowRun.getDisplayTitle(), is("its-display-title")); assertThat(workflowRun.getHeadSha(), is("dbea8d8b6ed2cf764dfd84a215f3f9040b3d4423")); assertThat(workflowRun.getRunNumber(), is(6L)); assertThat(workflowRun.getEvent(), is(GHEvent.WORKFLOW_DISPATCH)); diff --git a/src/test/java/org/kohsuke/github/GHMarketplacePlanTest.java b/src/test/java/org/kohsuke/github/GHMarketplacePlanTest.java index 7ae705a99c..90e697ce37 100644 --- a/src/test/java/org/kohsuke/github/GHMarketplacePlanTest.java +++ b/src/test/java/org/kohsuke/github/GHMarketplacePlanTest.java @@ -1,8 +1,10 @@ package org.kohsuke.github; +import org.hamcrest.Matchers; import org.junit.Test; import java.io.IOException; +import java.util.Arrays; import java.util.List; import static org.hamcrest.Matchers.*; @@ -40,7 +42,7 @@ protected GitHubBuilder getGitHubBuilder() { public void listMarketplacePlans() throws IOException { List plans = gitHub.listMarketplacePlans().toList(); assertThat(plans.size(), equalTo(3)); - plans.forEach(this::testMarketplacePlan); + plans.forEach(GHMarketplacePlanTest::testMarketplacePlan); } /** @@ -55,7 +57,7 @@ public void listAccounts() throws IOException { assertThat(plans.size(), equalTo(3)); List marketplaceUsers = plans.get(0).listAccounts().createRequest().toList(); assertThat(marketplaceUsers.size(), equalTo(2)); - marketplaceUsers.forEach(this::testMarketplaceAccount); + marketplaceUsers.forEach(GHMarketplacePlanTest::testMarketplaceAccount); } /** @@ -75,7 +77,7 @@ public void listAccountsWithDirection() throws IOException { .createRequest() .toList(); assertThat(marketplaceUsers.size(), equalTo(2)); - marketplaceUsers.forEach(this::testMarketplaceAccount); + marketplaceUsers.forEach(GHMarketplacePlanTest::testMarketplaceAccount); } } @@ -98,12 +100,12 @@ public void listAccountsWithSortAndDirection() throws IOException { .createRequest() .toList(); assertThat(marketplaceUsers.size(), equalTo(2)); - marketplaceUsers.forEach(this::testMarketplaceAccount); + marketplaceUsers.forEach(GHMarketplacePlanTest::testMarketplaceAccount); } } - private void testMarketplacePlan(GHMarketplacePlan plan) { + static void testMarketplacePlan(GHMarketplacePlan plan) { // Non-nullable fields assertThat(plan.getUrl(), notNullValue()); assertThat(plan.getAccountsUrl(), notNullValue()); @@ -118,10 +120,10 @@ private void testMarketplacePlan(GHMarketplacePlan plan) { assertThat(plan.getMonthlyPriceInCents(), greaterThanOrEqualTo(0L)); // list - assertThat(plan.getBullets().size(), equalTo(2)); + assertThat(plan.getBullets().size(), Matchers.in(Arrays.asList(2, 3))); } - private void testMarketplaceAccount(GHMarketplaceAccountPlan account) { + static void testMarketplaceAccount(GHMarketplaceAccountPlan account) { // Non-nullable fields assertThat(account.getLogin(), notNullValue()); assertThat(account.getUrl(), notNullValue()); @@ -146,7 +148,7 @@ private void testMarketplaceAccount(GHMarketplaceAccountPlan account) { testMarketplacePendingChange(account.getMarketplacePendingChange()); } - private void testMarketplacePurchase(GHMarketplacePurchase marketplacePurchase) { + static void testMarketplacePurchase(GHMarketplacePurchase marketplacePurchase) { // Non-nullable fields assertThat(marketplacePurchase.getBillingCycle(), notNullValue()); assertThat(marketplacePurchase.getNextBillingDate(), notNullValue()); @@ -165,11 +167,11 @@ private void testMarketplacePurchase(GHMarketplacePurchase marketplacePurchase) if (marketplacePurchase.getPlan().getPriceModel() == GHMarketplacePriceModel.PER_UNIT) assertThat(marketplacePurchase.getUnitCount(), notNullValue()); else - assertThat(marketplacePurchase.getUnitCount(), nullValue()); + assertThat(marketplacePurchase.getUnitCount(), Matchers.anyOf(nullValue(), is(1L))); } - private void testMarketplacePendingChange(GHMarketplacePendingChange marketplacePendingChange) { + static void testMarketplacePendingChange(GHMarketplacePendingChange marketplacePendingChange) { // Non-nullable fields assertThat(marketplacePendingChange.getEffectiveDate(), notNullValue()); testMarketplacePlan(marketplacePendingChange.getPlan()); diff --git a/src/test/java/org/kohsuke/github/GHObjectTest.java b/src/test/java/org/kohsuke/github/GHObjectTest.java index 05a8c1ae4e..66388e55ee 100644 --- a/src/test/java/org/kohsuke/github/GHObjectTest.java +++ b/src/test/java/org/kohsuke/github/GHObjectTest.java @@ -19,9 +19,16 @@ public class GHObjectTest extends org.kohsuke.github.AbstractGitHubWireMockTest @Test public void test_toString() throws Exception { GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG); - assertThat(org.toString(), - containsString( - "login=hub4j-test-org,location=,blog=,email=,bio=,name=,company=,type=Organization,followers=0,following=0,hireable=false")); + assertThat(org.toString(), containsString("login=hub4j-test-org")); + assertThat(org.toString(), containsString("location=")); + assertThat(org.toString(), containsString("blog=")); + assertThat(org.toString(), containsString("email=")); + assertThat(org.toString(), containsString("bio=")); + assertThat(org.toString(), containsString("name=")); + assertThat(org.toString(), containsString("company=")); + assertThat(org.toString(), containsString("type=Organization")); + assertThat(org.toString(), containsString("followers=0")); + assertThat(org.toString(), containsString("hireable=false")); // getResponseHeaderFields is deprecated but we should not break it. assertThat(org.getResponseHeaderFields(), notNullValue()); diff --git a/src/test/java/org/kohsuke/github/GHPublicKeyTest.java b/src/test/java/org/kohsuke/github/GHPublicKeyTest.java new file mode 100644 index 0000000000..4bd505b168 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHPublicKeyTest.java @@ -0,0 +1,33 @@ +package org.kohsuke.github; + +import org.junit.Test; + +/** + * The Class GHPublicKeyTest. + * + * @author Jonas van Vliet + */ +public class GHPublicKeyTest extends AbstractGitHubWireMockTest { + + private static final String TMP_KEY_NAME = "Temporary user key"; + private static final String WIREMOCK_SSH_PUBLIC_KEY = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDepW2/BSVFM2AfuGGsvi+vjQzC0EBD3R+/7PNEvP0/nvTWxiC/tthfvvCJR6TKrsprCir5tiJFm73gX+K18W0RKYpkyg8H6d1eZu3q/JOiGvoDPeN8Oe9hOGeeexw1WOiz7ESPHzZYXI981evzHAzxxn8zibr2EryopVNsXyoenw=="; + + /** + * Test adding a public key to the user + * + * @throws Exception + * the exception + */ + @Test + public void testAddPublicKey() throws Exception { + GHKey newPublicKey = null; + try { + GHMyself me = gitHub.getMyself(); + newPublicKey = me.addPublicKey(TMP_KEY_NAME, WIREMOCK_SSH_PUBLIC_KEY); + } finally { + if (newPublicKey != null) { + newPublicKey.delete(); + } + } + } +} diff --git a/src/test/java/org/kohsuke/github/GHPullRequestTest.java b/src/test/java/org/kohsuke/github/GHPullRequestTest.java index ff8f8ea595..98a50a8d09 100644 --- a/src/test/java/org/kohsuke/github/GHPullRequestTest.java +++ b/src/test/java/org/kohsuke/github/GHPullRequestTest.java @@ -253,24 +253,59 @@ public void pullRequestReviewComments() throws Exception { assertThat(comment.getOriginalCommitId(), equalTo("07374fe73aff1c2024a8d4114b32406c7a8e89b7")); assertThat(comment.getAuthorAssociation(), equalTo(GHCommentAuthorAssociation.MEMBER)); assertThat(comment.getUser(), notNullValue()); + assertThat(comment.getStartLine(), equalTo(-1)); + assertThat(comment.getOriginalStartLine(), equalTo(-1)); + assertThat(comment.getStartSide(), equalTo(GHPullRequestReviewComment.Side.UNKNOWN)); + assertThat(comment.getLine(), equalTo(1)); + assertThat(comment.getOriginalLine(), equalTo(1)); + assertThat(comment.getSide(), equalTo(GHPullRequestReviewComment.Side.LEFT)); + assertThat(comment.getPullRequestUrl(), notNullValue()); + assertThat(comment.getPullRequestUrl().toString(), containsString("hub4j-test-org/github-api/pulls/")); + assertThat(comment.getBodyHtml(), nullValue()); + assertThat(comment.getBodyText(), nullValue()); // Assert htmlUrl is not null assertThat(comment.getHtmlUrl(), notNullValue()); assertThat(comment.getHtmlUrl().toString(), containsString("hub4j-test-org/github-api/pull/" + p.getNumber())); + comment.createReaction(ReactionContent.EYES); + GHReaction toBeRemoved = comment.createReaction(ReactionContent.CONFUSED); + comment.createReaction(ReactionContent.ROCKET); + comment.createReaction(ReactionContent.HOORAY); + comment.createReaction(ReactionContent.HEART); + comment.createReaction(ReactionContent.MINUS_ONE); + comment.createReaction(ReactionContent.PLUS_ONE); + comment.createReaction(ReactionContent.LAUGH); + GHPullRequestReviewCommentReactions commentReactions = p.listReviewComments() + .toList() + .get(0) + .getReactions(); + assertThat(commentReactions.getUrl().toString(), equalTo(comment.getUrl().toString().concat("/reactions"))); + assertThat(commentReactions.getTotalCount(), equalTo(8)); + assertThat(commentReactions.getPlusOne(), equalTo(1)); + assertThat(commentReactions.getMinusOne(), equalTo(1)); + assertThat(commentReactions.getLaugh(), equalTo(1)); + assertThat(commentReactions.getHooray(), equalTo(1)); + assertThat(commentReactions.getConfused(), equalTo(1)); + assertThat(commentReactions.getHeart(), equalTo(1)); + assertThat(commentReactions.getRocket(), equalTo(1)); + assertThat(commentReactions.getEyes(), equalTo(1)); + + comment.deleteReaction(toBeRemoved); + List reactions = comment.listReactions().toList(); - assertThat(reactions, is(empty())); + assertThat(reactions.size(), equalTo(7)); GHReaction reaction = comment.createReaction(ReactionContent.CONFUSED); assertThat(reaction.getContent(), equalTo(ReactionContent.CONFUSED)); reactions = comment.listReactions().toList(); - assertThat(reactions.size(), equalTo(1)); + assertThat(reactions.size(), equalTo(8)); comment.deleteReaction(reaction); reactions = comment.listReactions().toList(); - assertThat(reactions.size(), equalTo(0)); + assertThat(reactions.size(), equalTo(7)); GHPullRequestReviewComment reply = comment.reply("This is a reply."); assertThat(reply.getInReplyToId(), equalTo(comment.getId())); diff --git a/src/test/java/org/kohsuke/github/GHReleaseTest.java b/src/test/java/org/kohsuke/github/GHReleaseTest.java index b59f0505c2..548c839305 100644 --- a/src/test/java/org/kohsuke/github/GHReleaseTest.java +++ b/src/test/java/org/kohsuke/github/GHReleaseTest.java @@ -1,6 +1,7 @@ package org.kohsuke.github; import org.junit.Test; +import org.kohsuke.github.GHReleaseBuilder.MakeLatest; import static org.hamcrest.Matchers.*; import static org.junit.Assert.assertThrows; @@ -162,4 +163,39 @@ public void testDeleteRelease() throws Exception { assertThat(repo.getRelease(release.getId()), nullValue()); } + + /** + * Test making a release the latest + * + * @throws Exception + * the exception + */ + @Test + public void testMakeLatestRelease() throws Exception { + GHRepository repo = getTempRepository(); + + GHRelease release1 = repo.createRelease("tag1").create(); + GHRelease release2 = null; + + try { + // Newly created release should also be the latest. + GHRelease latestRelease = repo.getLatestRelease(); + assertThat(release1.getNodeId(), is(latestRelease.getNodeId())); + + // Create a second release, explicitly set it not to be latest, confirm it isn't + release2 = repo.createRelease("tag2").makeLatest(MakeLatest.FALSE).create(); + latestRelease = repo.getLatestRelease(); + assertThat(release1.getNodeId(), is(latestRelease.getNodeId())); + + // Update the second release to be latest, confirm it is. + release2.update().makeLatest(MakeLatest.TRUE).update(); + latestRelease = repo.getLatestRelease(); + assertThat(release2.getNodeId(), is(latestRelease.getNodeId())); + } finally { + release1.delete(); + if (release2 != null) { + release2.delete(); + } + } + } } diff --git a/src/test/java/org/kohsuke/github/GHRepositoryTest.java b/src/test/java/org/kohsuke/github/GHRepositoryTest.java index d85880250e..61ca35c9c8 100644 --- a/src/test/java/org/kohsuke/github/GHRepositoryTest.java +++ b/src/test/java/org/kohsuke/github/GHRepositoryTest.java @@ -1,7 +1,9 @@ package org.kohsuke.github; import com.fasterxml.jackson.databind.JsonMappingException; +import com.google.common.collect.Sets; import org.apache.commons.io.IOUtils; +import org.junit.Assert; import org.junit.Test; import org.kohsuke.github.GHCheckRun.Conclusion; import org.kohsuke.github.GHOrganization.RepositoryRole; @@ -96,6 +98,7 @@ public void testGetters() throws IOException { assertThat(r.isAllowMergeCommit(), is(true)); assertThat(r.isAllowRebaseMerge(), is(true)); assertThat(r.isAllowSquashMerge(), is(true)); + assertThat(r.isAllowForking(), is(false)); String httpTransport = "https://github.com/hub4j-test-org/temp-testGetters.git"; assertThat(r.getHttpTransportUrl(), equalTo(httpTransport)); @@ -309,6 +312,57 @@ public void testSetPublic() throws Exception { } } + /** + * Tests the creation of repositories with alternating visibilities for orgs. + * + * @throws Exception + * the exception + */ + @Test + public void testCreateVisibilityForOrganization() throws Exception { + GHOrganization organization = gitHub.getOrganization(GITHUB_API_TEST_ORG); + + // can not test for internal, as test org is not assigned to an enterprise + for (Visibility visibility : Sets.newHashSet(Visibility.PUBLIC, Visibility.PRIVATE)) { + String repoName = String.format("test-repo-visibility-%s", visibility.toString()); + GHRepository repository = organization.createRepository(repoName).visibility(visibility).create(); + try { + assertThat(repository.getVisibility(), is(visibility)); + assertThat(organization.getRepository(repoName).getVisibility(), is(visibility)); + } finally { + repository.delete(); + } + } + } + + /** + * Tests the creation of repositories with alternating visibilities for users. + * + * @throws Exception + * the exception + */ + @Test + public void testCreateVisibilityForUser() throws Exception { + + GHUser myself = gitHub.getMyself(); + + // can not test for internal, as test org is not assigned to an enterprise + for (Visibility visibility : Sets.newHashSet(Visibility.PUBLIC, Visibility.PRIVATE)) { + String repoName = String.format("test-repo-visibility-%s", visibility.toString()); + boolean isPrivate = visibility.equals(Visibility.PRIVATE); + GHRepository repository = gitHub.createRepository(repoName) + .private_(isPrivate) + .visibility(visibility) + .create(); + try { + assertThat(repository.getVisibility(), is(visibility)); + assertThat(myself.getRepository(repoName).getVisibility(), is(visibility)); + } finally { + repository.delete(); + } + } + } + /** * Test update repository. * @@ -327,6 +381,7 @@ public void testUpdateRepository() throws Exception { GHRepository updated = builder.allowRebaseMerge(false) .allowSquashMerge(false) .deleteBranchOnMerge(true) + .allowForking(true) .description(description) .downloads(false) .downloads(false) @@ -341,6 +396,7 @@ public void testUpdateRepository() throws Exception { assertThat(updated.isAllowRebaseMerge(), is(false)); assertThat(updated.isAllowSquashMerge(), is(false)); assertThat(updated.isDeleteBranchOnMerge(), is(true)); + assertThat(updated.isAllowForking(), is(true)); assertThat(updated.isPrivate(), is(true)); assertThat(updated.hasDownloads(), is(false)); assertThat(updated.hasIssues(), is(false)); @@ -1344,6 +1400,31 @@ public void getCheckRuns() throws Exception { } } + /** + * Filter out the checks from a reference + * + * @throws Exception + * the exception + */ + @Test + public void getCheckRunsWithParams() throws Exception { + final int expectedCount = 1; + // Use github-api repository as it has checks set up + final Map params = new HashMap<>(1); + params.put("check_name", "build-only (Java 17)"); + PagedIterable checkRuns = gitHub.getOrganization("hub4j") + .getRepository("github-api") + .getCheckRuns("54d60fbb53b4efa19f3081417bfb6a1de30c55e4", params); + + // Check if the checkruns are all succeeded and if we got all of them + int checkRunsCount = 0; + for (GHCheckRun checkRun : checkRuns) { + assertThat(checkRun.getConclusion(), equalTo(Conclusion.SUCCESS)); + checkRunsCount++; + } + assertThat(checkRunsCount, equalTo(expectedCount)); + } + /** * Gets the last commit status. * @@ -1538,4 +1619,97 @@ public void createSecret() throws Exception { GHRepository repo = getTempRepository(); repo.createSecret("secret", "encrypted", "public"); } + + /** + * Test to check star method by verifying stargarzer count. + * + * @throws Exception + * the exception + */ + @Test + public void starTest() throws Exception { + String owner = "hub4j-test-org"; + GHRepository repository = getRepository(); + assertThat(repository.getOwner().getLogin(), equalTo(owner)); + assertThat(repository.getStargazersCount(), is(0)); + repository.star(); + assertThat(repository.listStargazers2().toList().size(), is(1)); + repository.unstar(); + assertThat(repository.listStargazers().toList().size(), is(0)); + } + + /** + * Test to check getRepoVariable method. + * + * @throws Exception + * the exception + */ + @Test + public void testRepoActionVariable() throws Exception { + GHRepository repository = getRepository(); + GHRepositoryVariable variable = repository.getRepoVariable("myvar"); + assertThat(variable.getValue(), is("this is my var value")); + } + + /** + * Test create repo action variable. + * + * @throws IOException + * the exception + */ + @Test + public void testCreateRepoActionVariable() throws IOException { + GHRepository repository = getRepository(); + repository.createVariable("MYNEWVARIABLE", "mynewvalue"); + GHRepositoryVariable variable = repository.getVariable("mynewvariable"); + assertThat(variable.getName(), is("MYNEWVARIABLE")); + assertThat(variable.getValue(), is("mynewvalue")); + } + + /** + * Test update repo action variable. + * + * @throws IOException + * the exception + */ + @Test + public void testUpdateRepoActionVariable() throws IOException { + GHRepository repository = getRepository(); + GHRepositoryVariable variable = repository.getVariable("MYNEWVARIABLE"); + variable.set().value("myupdatevalue"); + variable = repository.getVariable("MYNEWVARIABLE"); + assertThat(variable.getValue(), is("myupdatevalue")); + } + + /** + * Test delete repo action variable. + * + * @throws IOException + * the exception + */ + @Test + public void testDeleteRepoActionVariable() throws IOException { + GHRepository repository = getRepository(); + GHRepositoryVariable variable = repository.getVariable("mynewvariable"); + variable.delete(); + Assert.assertThrows(GHFileNotFoundException.class, () -> repository.getVariable("mynewvariable")); + } + + /** + * Test demoing the issue with a user having the maintain permission on a repository. + * + * Test checking the permission fallback mechanism in case the Github API changes. The test was recorded at a time a + * new permission was added by mistake. If a re-recording it is needed, you'll like have to manually edit the + * generated mocks to get a non existing permission See + * https://github.com/hub4j/github-api/issues/1671#issuecomment-1577515662 for the details. + * + * @throws IOException + * the exception + */ + @Test + public void cannotRetrievePermissionMaintainUser() throws IOException { + GHRepository r = gitHub.getRepository("hub4j-test-org/maintain-permission-issue"); + GHPermissionType permission = r.getPermission("alecharp"); + assertThat(permission.toString(), is("UNKNOWN")); + } } diff --git a/src/test/java/org/kohsuke/github/GHTreeBuilderTest.java b/src/test/java/org/kohsuke/github/GHTreeBuilderTest.java index a9260cb926..9071477889 100644 --- a/src/test/java/org/kohsuke/github/GHTreeBuilderTest.java +++ b/src/test/java/org/kohsuke/github/GHTreeBuilderTest.java @@ -134,6 +134,46 @@ public void testAdd() throws Exception { } + /** + * Test delete. + * + * @throws Exception + * the exception + */ + @Test + public void testDelete() throws Exception { + // add test tree + treeBuilder.add(PATH_README, CONTENT_README, false); + treeBuilder.add(PATH_DATA1, CONTENT_DATA1, false); + + GHCommit commit = updateTree(); + + assertThat(getFileSize(PATH_README), equalTo((long) CONTENT_README.length())); + assertThat(getFileSize(PATH_DATA1), equalTo((long) CONTENT_DATA1.length)); + + assertThat(commit.getCommitShortInfo().getAuthor().getEmail(), equalTo("author@author.com")); + assertThat(commit.getCommitShortInfo().getCommitter().getEmail(), equalTo("committer@committer.com")); + + // remove a file from tree + mainRef = repo.getRef("heads/main"); + treeBuilder = repo.createTree().baseTree(commit.getTree().getSha()); + treeBuilder.delete(PATH_DATA1); + + GHCommit deleteCommit = updateTree(); + + assertThat(getFileSize(PATH_README), equalTo((long) CONTENT_README.length())); + + assertThat(deleteCommit.getCommitShortInfo().getAuthor().getEmail(), equalTo("author@author.com")); + assertThat(deleteCommit.getCommitShortInfo().getCommitter().getEmail(), equalTo("committer@committer.com")); + + try { + getFileSize(PATH_DATA1); + fail("File " + PATH_DATA1 + " should not exist"); + } catch (IOException e) { + assertThat(e.getMessage(), stringContainsInOrder(PATH_DATA1, "Not Found")); + } + } + private GHCommit updateTree() throws IOException { String treeSha = treeBuilder.create().getSha(); GHCommit commit = new GHCommitBuilder(repo).message("Add files") diff --git a/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java b/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java index 73977ef1d4..42b3292c72 100644 --- a/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java +++ b/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java @@ -217,4 +217,88 @@ public void testValid() throws Exception { assertThat(commit.getCommitShortInfo().getVerification().getPayload(), notNullValue()); assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); } + + /** + * Test bad cert. + * + * @throws Exception + * the exception + */ + @Test + public void testBadCert() throws Exception { + GHRepository r = gitHub.getRepository("hub4j/github-api"); + GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); + assertThat(commit.getCommitShortInfo().getAuthor().getName(), equalTo("Sourabh Parkala")); + assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); + assertThat(commit.getCommitShortInfo().getVerification().isVerified(), is(false)); + assertThat(commit.getCommitShortInfo().getVerification().getReason(), equalTo(GHVerification.Reason.BAD_CERT)); + } + + /** + * Test malformed sig. + * + * @throws Exception + * the exception + */ + @Test + public void testMalformedSig() throws Exception { + GHRepository r = gitHub.getRepository("hub4j/github-api"); + GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); + assertThat(commit.getCommitShortInfo().getAuthor().getName(), equalTo("Sourabh Parkala")); + assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); + assertThat(commit.getCommitShortInfo().getVerification().isVerified(), is(false)); + assertThat(commit.getCommitShortInfo().getVerification().getReason(), + equalTo(GHVerification.Reason.MALFORMED_SIG)); + } + + /** + * Test OSCP error. + * + * @throws Exception + * the exception + */ + @Test + public void testOcspError() throws Exception { + GHRepository r = gitHub.getRepository("hub4j/github-api"); + GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); + assertThat(commit.getCommitShortInfo().getAuthor().getName(), equalTo("Sourabh Parkala")); + assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); + assertThat(commit.getCommitShortInfo().getVerification().isVerified(), is(false)); + assertThat(commit.getCommitShortInfo().getVerification().getReason(), + equalTo(GHVerification.Reason.OCSP_ERROR)); + } + + /** + * Test OSCP pending. + * + * @throws Exception + * the exception + */ + @Test + public void testOscpPending() throws Exception { + GHRepository r = gitHub.getRepository("hub4j/github-api"); + GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); + assertThat(commit.getCommitShortInfo().getAuthor().getName(), equalTo("Sourabh Parkala")); + assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); + assertThat(commit.getCommitShortInfo().getVerification().isVerified(), is(false)); + assertThat(commit.getCommitShortInfo().getVerification().getReason(), + equalTo(GHVerification.Reason.OCSP_PENDING)); + } + + /** + * Test OCSP revoked. + * + * @throws Exception + * the exception + */ + @Test + public void testOscpRevoked() throws Exception { + GHRepository r = gitHub.getRepository("hub4j/github-api"); + GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); + assertThat(commit.getCommitShortInfo().getAuthor().getName(), equalTo("Sourabh Parkala")); + assertThat(commit.getCommitShortInfo().getVerification().getSignature(), notNullValue()); + assertThat(commit.getCommitShortInfo().getVerification().isVerified(), is(false)); + assertThat(commit.getCommitShortInfo().getVerification().getReason(), + equalTo(GHVerification.Reason.OCSP_REVOKED)); + } } diff --git a/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java b/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java index f2033f5ae2..07eab6a2f0 100644 --- a/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java +++ b/src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java @@ -147,7 +147,7 @@ public void BasicBehaviors_whenProxying() throws Exception { assertThat(e, Matchers.instanceOf(GHFileNotFoundException.class)); assertThat(e.getMessage(), containsString( - "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-repository\"}")); + "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/repos/repos#get-a-repository\"}")); } /** diff --git a/src/test/java/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest.java b/src/test/java/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest.java new file mode 100644 index 0000000000..a408596cbe --- /dev/null +++ b/src/test/java/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest.java @@ -0,0 +1,79 @@ +package org.kohsuke.github.extras.authorization; + +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; +import org.junit.Test; +import org.kohsuke.github.AbstractGitHubWireMockTest; +import org.kohsuke.github.GHUser; +import org.kohsuke.github.RateLimitHandler; +import org.kohsuke.github.authorization.AuthorizationProvider; + +import java.io.IOException; + +/** + * Test authorization token refresh. + */ +public class AuthorizationTokenRefreshTest extends AbstractGitHubWireMockTest { + + /** + * Instantiates a new test. + */ + public AuthorizationTokenRefreshTest() { + useDefaultGitHub = false; + } + + /** + * Gets the wire mock options. + * + * @return the wire mock options + */ + @Override + protected WireMockConfiguration getWireMockOptions() { + return super.getWireMockOptions().extensions(templating.newResponseTransformer()); + } + + /** + * Retried request should get new token when the old one expires. + * + * @throws IOException + * the exception + */ + @Test + public void testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires() throws IOException { + snapshotNotAllowed(); + gitHub = getGitHubBuilder().withAuthorizationProvider(new RefreshingAuthorizationProvider()) + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withRateLimitHandler(RateLimitHandler.WAIT) + .build(); + final GHUser kohsuke = gitHub.getUser("kohsuke"); + assertThat("Usernames match", "kohsuke".equals(kohsuke.getLogin())); + } + + /** + * Retried request should not get new token when the old one is still valid. + * + * @throws IOException + * the exception + */ + @Test + public void testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid() throws IOException { + gitHub = getGitHubBuilder().withAuthorizationProvider(() -> "original token") + .withEndpoint(mockGitHub.apiServer().baseUrl()) + .withRateLimitHandler(RateLimitHandler.WAIT) + .build(); + final GHUser kohsuke = gitHub.getUser("kohsuke"); + assertThat("Usernames match", "kohsuke".equals(kohsuke.getLogin())); + } + + static class RefreshingAuthorizationProvider implements AuthorizationProvider { + private boolean used = false; + + @Override + public String getEncodedAuthorization() { + if (used) { + return "refreshed token"; + } + used = true; + return "original token"; + } + } +} diff --git a/src/test/java/org/kohsuke/github/junit/WireMockRule.java b/src/test/java/org/kohsuke/github/junit/WireMockRule.java index f65e4cf11a..b7e89a6cd4 100644 --- a/src/test/java/org/kohsuke/github/junit/WireMockRule.java +++ b/src/test/java/org/kohsuke/github/junit/WireMockRule.java @@ -527,6 +527,16 @@ public void editStubMapping(StubMapping stubMapping) { wireMockServer.editStubMapping(stubMapping); } + /** + * Removes the stub mapping. + * + * @param id + * the id + */ + public void removeStubMapping(UUID id) { + wireMockServer.removeStubMapping(id); + } + /** * List all stub mappings. * @@ -711,6 +721,28 @@ public GetScenariosResult getAllScenarios() { return wireMockServer.getAllScenarios(); } + /** + * Reset a scenario + * + * @param name + * the name + */ + public void resetScenario(String name) { + wireMockServer.resetScenario(name); + } + + /** + * Set scenario state + * + * @param name + * the name + * @param state + * the state + */ + public void setScenarioState(String name, String state) { + wireMockServer.setScenarioState(name, state); + } + /** * Find top near misses for. * diff --git a/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java b/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java index ee8f953130..1960061c04 100644 --- a/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java +++ b/src/test/java/org/kohsuke/github/junit/WireMockRuleConfiguration.java @@ -411,4 +411,21 @@ public boolean getDisableStrictHttpHeaders() { return parent.getDisableStrictHttpHeaders(); } + /** + * Gets the data truncation settings. + * + * @return the data truncation settings + */ + public DataTruncationSettings getDataTruncationSettings() { + return parent.getDataTruncationSettings(); + } + + /** + * Gets the network address rules. + * + * @return the network address rules + */ + public NetworkAddressRules getProxyTargetRules() { + return parent.getProxyTargetRules(); + } } diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/app-2.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/app-2.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/app-2.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/app-2.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/user-1.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/user-1.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/user-1.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/invalidJWTTokenRaisesException/mappings/user-1.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/app-2.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/app-2.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/app-2.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/app-2.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/orgs_hub4j-test-org_installation-3.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/orgs_hub4j-test-org_installation-3.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/orgs_hub4j-test-org_installation-3.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/__files/orgs_hub4j-test-org_installation-3.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app-2.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app-2.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app-2.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app-2.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app_installations_11575015_access_tokens-4.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app_installations_11575015_access_tokens-4.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app_installations_11575015_access_tokens-4.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/app_installations_11575015_access_tokens-4.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/orgs_hub4j-test-org_installation-3.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/orgs_hub4j-test-org_installation-3.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/orgs_hub4j-test-org_installation-3.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/orgs_hub4j-test-org_installation-3.json diff --git a/src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/user-1.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/user-1.json similarity index 100% rename from src/test/resources/org/kohsuke/github/OrgAppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/user-1.json rename to src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenAllowsOauthTokenRequest/mappings/user-1.json diff --git a/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app-1.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app-1.json new file mode 100644 index 0000000000..47e828ca82 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app-1.json @@ -0,0 +1,37 @@ +{ + "id": 82994, + "slug": "ghapi-test-app-1", + "node_id": "MDM6QXBwODI5OTQ=", + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "GHApi Test app 1", + "description": "", + "external_url": "http://localhost", + "html_url": "https://github.com/apps/ghapi-test-app-1", + "created_at": "2020-09-30T13:40:56Z", + "updated_at": "2020-09-30T13:40:56Z", + "permissions": { + "contents": "read", + "metadata": "read" + }, + "events": [], + "installations_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app_installations_12129901-2.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app_installations_12129901-2.json new file mode 100644 index 0000000000..5545b86e94 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/__files/app_installations_12129901-2.json @@ -0,0 +1,40 @@ +{ + "id": 12129901, + "account": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/12129901/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/hub4j-test-org/settings/installations/12129901", + "app_id": 82994, + "app_slug": "ghapi-test-app-1", + "target_id": 7544739, + "target_type": "Organization", + "permissions": {}, + "events": [], + "created_at": "2020-09-30T13:41:32.000Z", + "updated_at": "2023-03-21T14:39:11.000Z", + "single_file_name": null, + "has_multiple_single_files": false, + "single_file_paths": [], + "suspended_by": null, + "suspended_at": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app-1.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app-1.json new file mode 100644 index 0000000000..4f6be93fd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app-1.json @@ -0,0 +1,42 @@ +{ + "id": "44e77d23-3e8f-4c80-a5fc-98546576386a", + "name": "app", + "request": { + "url": "/app", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "app-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 09:15:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"662c8ea184a852f605e0c94a9789fe43965f939e16e02ff0b3a8cc1043078a62\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5E4:64DB:14B8E4B:2A5B09C:6439199C" + } + }, + "uuid": "44e77d23-3e8f-4c80-a5fc-98546576386a", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901-2.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901-2.json new file mode 100644 index 0000000000..b8fd2e08eb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901-2.json @@ -0,0 +1,42 @@ +{ + "id": "28dac8ce-4adb-4cd1-87f0-92a778dbc666", + "name": "app_installations_12129901", + "request": { + "url": "/app/installations/12129901", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "app_installations_12129901-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 09:15:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"769ac49fef0becca8ce246825760301f5b9212a8530d24d502c80bbc0a06e85c\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5E5:7CF1:D338A6:1B21990:6439199D" + } + }, + "uuid": "28dac8ce-4adb-4cd1-87f0-92a778dbc666", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901_access_tokens-3.json b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901_access_tokens-3.json new file mode 100644 index 0000000000..2444c987dc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppInstallationAuthorizationProviderTest/wiremock/validJWTTokenWhenLookingUpAppById/mappings/app_installations_12129901_access_tokens-3.json @@ -0,0 +1,49 @@ +{ + "id": "aac9a24a-fb91-4b75-ab55-f0c3680c25f9", + "name": "app_installations_12129901_access_tokens", + "request": { + "url": "/app/installations/12129901/access_tokens", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "body": "{\"token\":\"ghs_H067E5bylNzK8WTHrhkkUWH4oSmnIa0sQPIE\",\"expires_at\":\"2023-04-14T10:15:09Z\",\"permissions\":{\"contents\":\"read\",\"metadata\":\"read\"},\"repository_selection\":\"selected\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 09:15:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"3596a4698310b644afcf2cca637bc4a361f45e3ad0cf3d88069b43f791325443\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5E6:8682:ED399A:1E5EFD5:6439199D" + } + }, + "uuid": "aac9a24a-fb91-4b75-ab55-f0c3680c25f9", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test-2.json new file mode 100644 index 0000000000..2d5a6b55ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test-2.json @@ -0,0 +1,117 @@ +{ + "id": 611473997, + "node_id": "R_kgDOJHJaTQ", + "name": "github-api-test", + "full_name": "hub4j-test-org/github-api-test", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 238558, + "node_id": "MDQ6VXNlcjIzODU1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/238558?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api-test", + "description": "A test repository for testing the github-api project: github-api-test", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/deployments", + "created_at": "2023-03-08T22:36:45Z", + "updated_at": "2023-03-08T22:36:45Z", + "pushed_at": "2023-03-08T22:36:45Z", + "git_url": "git://github.com/hub4j-test-org/github-api-test.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api-test.git", + "clone_url": "https://github.com/hub4j-test-org/github-api-test.git", + "svn_url": "https://github.com/hub4j-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-3.json new file mode 100644 index 0000000000..8433b32127 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-3.json @@ -0,0 +1,11 @@ +{ + "id": 78869617, + "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617", + "title": "test", + "verified": true, + "created_at": "2023-03-08T22:36:50Z", + "read_only": false, + "last_used": null, + "added_by": "hub4j-test-org" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-4.json new file mode 100644 index 0000000000..92a6bea577 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/repos_hub4j-test-org_github-api-test_keys-4.json @@ -0,0 +1,13 @@ +[ + { + "id": 78869617, + "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617", + "title": "test", + "verified": true, + "created_at": "2023-03-08T22:36:50Z", + "read_only": false, + "last_used": null, + "added_by": "hub4j-test-org" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/user-1.json new file mode 100644 index 0000000000..92e9ace93c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDQ6VXNlcjIzODU1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false, + "name": "hub4j-test-org", + "company": null, + "blog": "", + "location": "", + "email": null, + "hireable": null, + "bio": "", + "twitter_username": null, + "public_repos": 13, + "public_gists": 4, + "followers": 6, + "following": 1, + "created_at": "2010-04-07T08:30:12Z", + "updated_at": "2022-11-28T20:54:46Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test-2.json new file mode 100644 index 0000000000..8764b8abec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test-2.json @@ -0,0 +1,49 @@ +{ + "id": "8b7ef826-893b-4288-b625-4492949cd9b1", + "name": "repos_hub4j-test-org_github-api-test", + "request": { + "url": "/repos/hub4j-test-org/github-api-test", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-test-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"9a25876ca00d328a54c1400dffe501009cdcbc3410dd90140b0c33cc19608961\"", + "Last-Modified": "Wed, 08 Mar 2023 22:36:45 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "97", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5D8:ACE5:B4A8F2D:B741C36:64090E01" + } + }, + "uuid": "8b7ef826-893b-4288-b625-4492949cd9b1", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-3.json new file mode 100644 index 0000000000..b73aab599f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-3.json @@ -0,0 +1,56 @@ +{ + "id": "f648e6ad-c2ec-42b2-bc75-017ac64e67d9", + "name": "repos_hub4j-test-org_github-api-test_keys", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"read_only\":false,\"title\":\"test\",\"key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9 test@example.com\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api-test_keys-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"0a4e82c98d34824d431a19b779f7fcc35e1a3c1142ff9c1a7132d8840630f8a6\"", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "98", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5DE:A9BF:A40D94B:A69E360:64090E01", + "Location": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617" + } + }, + "uuid": "f648e6ad-c2ec-42b2-bc75-017ac64e67d9", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-4.json new file mode 100644 index 0000000000..c1372692d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys-4.json @@ -0,0 +1,48 @@ +{ + "id": "ca5ce05e-5052-4cce-9508-c33ba42ab18f", + "name": "repos_hub4j-test-org_github-api-test_keys", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-test_keys-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"0a77e8787fcd166b10430624945723c4d8bdc5f131bcc1c821d56170eec9db86\"", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "99", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5EA:3041:9E5EEE8:A0EE307:64090E02" + } + }, + "uuid": "ca5ce05e-5052-4cce-9508-c33ba42ab18f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json new file mode 100644 index 0000000000..833744f03e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json @@ -0,0 +1,41 @@ +{ + "id": "0fc8164e-80f8-450b-a7b5-4f604f9eeaa9", + "name": "repos_hub4j-test-org_github-api-test_keys_78869617", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys/78869617", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:51 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "100", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "E5FA:A7AE:82F2BFE:8532045:64090E02" + } + }, + "uuid": "0fc8164e-80f8-450b-a7b5-4f604f9eeaa9", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/user-1.json new file mode 100644 index 0000000000..d46c6d045e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKey/mappings/user-1.json @@ -0,0 +1,49 @@ +{ + "id": "9e6bf17e-5e07-4c66-ab42-eba00096c098", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e548710856e14da19e6d9c3a0b9e6751b4cec74b4ead51290d5179d92173e70e\"", + "Last-Modified": "Mon, 28 Nov 2022 20:54:46 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "93", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AC20:E4F4:322E5E4:32FF236:64090DFB" + } + }, + "uuid": "9e6bf17e-5e07-4c66-ab42-eba00096c098", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test-2.json new file mode 100644 index 0000000000..2d5a6b55ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test-2.json @@ -0,0 +1,117 @@ +{ + "id": 611473997, + "node_id": "R_kgDOJHJaTQ", + "name": "github-api-test", + "full_name": "hub4j-test-org/github-api-test", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 238558, + "node_id": "MDQ6VXNlcjIzODU1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/238558?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api-test", + "description": "A test repository for testing the github-api project: github-api-test", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api-test/deployments", + "created_at": "2023-03-08T22:36:45Z", + "updated_at": "2023-03-08T22:36:45Z", + "pushed_at": "2023-03-08T22:36:45Z", + "git_url": "git://github.com/hub4j-test-org/github-api-test.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api-test.git", + "clone_url": "https://github.com/hub4j-test-org/github-api-test.git", + "svn_url": "https://github.com/hub4j-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-3.json new file mode 100644 index 0000000000..6b1f155ad8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-3.json @@ -0,0 +1,11 @@ +{ + "id": 78869617, + "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617", + "title": "test", + "verified": true, + "created_at": "2023-03-08T22:36:50Z", + "read_only": true, + "last_used": null, + "added_by": "hub4j-test-org" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-4.json new file mode 100644 index 0000000000..7c1ba9bebb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/repos_hub4j-test-org_github-api-test_keys-4.json @@ -0,0 +1,13 @@ +[ + { + "id": 78869617, + "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617", + "title": "test", + "verified": true, + "created_at": "2023-03-08T22:36:50Z", + "read_only": true, + "last_used": null, + "added_by": "hub4j-test-org" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/user-1.json new file mode 100644 index 0000000000..92e9ace93c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDQ6VXNlcjIzODU1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false, + "name": "hub4j-test-org", + "company": null, + "blog": "", + "location": "", + "email": null, + "hireable": null, + "bio": "", + "twitter_username": null, + "public_repos": 13, + "public_gists": 4, + "followers": 6, + "following": 1, + "created_at": "2010-04-07T08:30:12Z", + "updated_at": "2022-11-28T20:54:46Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test-2.json new file mode 100644 index 0000000000..8764b8abec --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test-2.json @@ -0,0 +1,49 @@ +{ + "id": "8b7ef826-893b-4288-b625-4492949cd9b1", + "name": "repos_hub4j-test-org_github-api-test", + "request": { + "url": "/repos/hub4j-test-org/github-api-test", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-test-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"9a25876ca00d328a54c1400dffe501009cdcbc3410dd90140b0c33cc19608961\"", + "Last-Modified": "Wed, 08 Mar 2023 22:36:45 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "97", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5D8:ACE5:B4A8F2D:B741C36:64090E01" + } + }, + "uuid": "8b7ef826-893b-4288-b625-4492949cd9b1", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-3.json new file mode 100644 index 0000000000..3fee79387a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-3.json @@ -0,0 +1,56 @@ +{ + "id": "f648e6ad-c2ec-42b2-bc75-017ac64e67d9", + "name": "repos_hub4j-test-org_github-api-test_keys", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"read_only\":true,\"title\":\"test\",\"key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIATWwMLytklB44O66isWRKOB3Qd7Ysc7q7EyWTmT0bG9 test@example.com\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api-test_keys-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"0a4e82c98d34824d431a19b779f7fcc35e1a3c1142ff9c1a7132d8840630f8a6\"", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "98", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5DE:A9BF:A40D94B:A69E360:64090E01", + "Location": "https://api.github.com/repos/hub4j-test-org/github-api-test/keys/78869617" + } + }, + "uuid": "f648e6ad-c2ec-42b2-bc75-017ac64e67d9", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-4.json new file mode 100644 index 0000000000..c1372692d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys-4.json @@ -0,0 +1,48 @@ +{ + "id": "ca5ce05e-5052-4cce-9508-c33ba42ab18f", + "name": "repos_hub4j-test-org_github-api-test_keys", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-test_keys-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"0a77e8787fcd166b10430624945723c4d8bdc5f131bcc1c821d56170eec9db86\"", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "99", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E5EA:3041:9E5EEE8:A0EE307:64090E02" + } + }, + "uuid": "ca5ce05e-5052-4cce-9508-c33ba42ab18f", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json new file mode 100644 index 0000000000..833744f03e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/repos_hub4j-test-org_github-api-test_keys_78869617-5.json @@ -0,0 +1,41 @@ +{ + "id": "0fc8164e-80f8-450b-a7b5-4f604f9eeaa9", + "name": "repos_hub4j-test-org_github-api-test_keys_78869617", + "request": { + "url": "/repos/hub4j-test-org/github-api-test/keys/78869617", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:51 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "100", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "E5FA:A7AE:82F2BFE:8532045:64090E02" + } + }, + "uuid": "0fc8164e-80f8-450b-a7b5-4f604f9eeaa9", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/user-1.json new file mode 100644 index 0000000000..d46c6d045e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testAddDeployKeyAsReadOnly/mappings/user-1.json @@ -0,0 +1,49 @@ +{ + "id": "9e6bf17e-5e07-4c66-ab42-eba00096c098", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Mar 2023 22:36:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e548710856e14da19e6d9c3a0b9e6751b4cec74b4ead51290d5179d92173e70e\"", + "Last-Modified": "Mon, 28 Nov 2022 20:54:46 GMT", + "github-authentication-token-expiration": "2023-04-07 23:24:34 +0200", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1678317208", + "X-RateLimit-Used": "93", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AC20:E4F4:322E5E4:32FF236:64090DFB" + } + }, + "uuid": "9e6bf17e-5e07-4c66-ab42-eba00096c098", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/orgs_hub4j-10.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/orgs_hub4j-10.json new file mode 100644 index 0000000000..6eee4c6f03 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/orgs_hub4j-10.json @@ -0,0 +1,25 @@ +{ + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "url": "https://api.github.com/orgs/hub4j", + "repos_url": "https://api.github.com/orgs/hub4j/repos", + "events_url": "https://api.github.com/orgs/hub4j/events", + "hooks_url": "https://api.github.com/orgs/hub4j/hooks", + "issues_url": "https://api.github.com/orgs/hub4j/issues", + "members_url": "https://api.github.com/orgs/hub4j/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j/public_members{/member}", + "avatar_url": "https://avatars.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/hub4j", + "created_at": "2019-09-04T18:12:34Z", + "updated_at": "2020-05-08T21:26:19Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/repos_hub4j_github-api-11.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/repos_hub4j_github-api-11.json new file mode 100644 index 0000000000..75198ea0a6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/repos_hub4j_github-api-11.json @@ -0,0 +1,144 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2023-04-14T09:46:15Z", + "pushed_at": "2023-04-14T09:41:23Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 41026, + "stargazers_count": 996, + "watchers_count": 996, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 669, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 144, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "api", + "client-library", + "github", + "github-api", + "github-api-v3", + "java", + "java-api" + ], + "visibility": "public", + "forks": 669, + "open_issues": 144, + "watchers": 996, + "default_branch": "main", + "permissions": { + "admin": false, + "maintain": false, + "push": false, + "triage": false, + "pull": true + }, + "temp_clone_token": "", + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 669, + "subscribers_count": 44 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user-1.json new file mode 100644 index 0000000000..18733f143d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false, + "name": "Pierre Beitz", + "company": "@cloudbees ", + "blog": "", + "location": null, + "email": "pibeitz@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 88, + "public_gists": 7, + "followers": 13, + "following": 11, + "created_at": "2014-11-21T10:26:34Z", + "updated_at": "2023-04-13T15:51:35Z", + "private_gists": 25, + "total_private_repos": 51, + "owned_private_repos": 2, + "disk_usage": 21381, + "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/testUserPublicEventApi/__files/user_9881659_events_public-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-3.json new file mode 100644 index 0000000000..cab532ae5f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-3.json @@ -0,0 +1,4671 @@ +[ + { + "id": "28416056245", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830807, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:31Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416051795", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830740, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:20Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416051436", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830740, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:19Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416047882", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830691, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:09Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416047507", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830691, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:08Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28415983981", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 608727059, + "name": "PierreBtz/github-api", + "url": "https://api.github.com/repos/PierreBtz/github-api" + }, + "payload": { + "repository_id": 608727059, + "push_id": 13298980295, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/pbeitz/generic-install-provider", + "head": "ac741a86051654a34a8429658181d5d757763278", + "before": "b29b53b2bb84083a5cb5b1eb9e293872acb227c7", + "commits": [ + { + "sha": "ac741a86051654a34a8429658181d5d757763278", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "missing stubs...", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/ac741a86051654a34a8429658181d5d757763278" + } + ] + }, + "public": true, + "created_at": "2023-04-14T09:41:22Z" + }, + { + "id": "28415484537", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 608727059, + "name": "PierreBtz/github-api", + "url": "https://api.github.com/repos/PierreBtz/github-api" + }, + "payload": { + "repository_id": 608727059, + "push_id": 13298739660, + "size": 12, + "distinct_size": 12, + "ref": "refs/heads/pbeitz/generic-install-provider", + "head": "b29b53b2bb84083a5cb5b1eb9e293872acb227c7", + "before": "6cf735603a20b71c3ca05681e091b62dcbfd7527", + "commits": [ + { + "sha": "b8e160851a04cdf6c9f7d0e207395d5ef3824b02", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Chore(deps): Bump japicmp-maven-plugin from 0.16.0 to 0.17.1\n\nBumps [japicmp-maven-plugin](https://github.com/siom79/japicmp) from 0.16.0 to 0.17.1.\n- [Release notes](https://github.com/siom79/japicmp/releases)\n- [Changelog](https://github.com/siom79/japicmp/blob/master/release.py)\n- [Commits](https://github.com/siom79/japicmp/compare/japicmp-base-0.16.0...japicmp-base-0.17.1)\n\n---\nupdated-dependencies:\n- dependency-name: com.github.siom79.japicmp:japicmp-maven-plugin\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/b8e160851a04cdf6c9f7d0e207395d5ef3824b02" + }, + { + "sha": "0795bf2eb346d6d0b50483bac893e48b37a1ad38", + "author": { + "email": "marscel@googlemail.com", + "name": "MarcelHB" + }, + "message": "GHRepository: allows creating deploy keys being read-only\n\nfixes #1592", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/0795bf2eb346d6d0b50483bac893e48b37a1ad38" + }, + { + "sha": "4de47edbeff5677d35d7f568276797e79c444603", + "author": { + "email": "benoit.lacelle@gmail.com", + "name": "Benoit Lacelle" + }, + "message": "Fix unit of marketPlan plans", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/4de47edbeff5677d35d7f568276797e79c444603" + }, + { + "sha": "edef17351baad459aec483092a516d58c8e1a98f", + "author": { + "email": "benoit.lacelle@gmail.com", + "name": "Benoit Lacelle" + }, + "message": "Fix myMarketplacePlans unitTest", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/edef17351baad459aec483092a516d58c8e1a98f" + }, + { + "sha": "15b9aee11cf5fb4c6b33341882985e0241b13c51", + "author": { + "email": "benoit.lacelle@gmail.com", + "name": "Benoit Lacelle" + }, + "message": "Fix more mocks", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/15b9aee11cf5fb4c6b33341882985e0241b13c51" + }, + { + "sha": "cb089b9b79297ea785cceaf9830b866ffdd66f78", + "author": { + "email": "benoit.lacelle@gmail.com", + "name": "Benoit Lacelle" + }, + "message": "Fix more tests", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/cb089b9b79297ea785cceaf9830b866ffdd66f78" + }, + { + "sha": "dc304e188920981e3232710ece4a5d74198b25a8", + "author": { + "email": "bitwiseman@gmail.com", + "name": "Liam Newman" + }, + "message": "Merge pull request #1622 from hub4j/dependabot/maven/com.github.siom79.japicmp-japicmp-maven-plugin-0.17.1\n\nChore(deps): Bump japicmp-maven-plugin from 0.16.0 to 0.17.1", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/dc304e188920981e3232710ece4a5d74198b25a8" + }, + { + "sha": "3cb78afd3f67e734a287697ff4d7e7e3e3516641", + "author": { + "email": "bitwiseman@gmail.com", + "name": "Liam Newman" + }, + "message": "Merge pull request #1629 from solven-eu/solven/FixMarketPlanPlans\n\nFix unit of marketPlace plans", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/3cb78afd3f67e734a287697ff4d7e7e3e3516641" + }, + { + "sha": "9c843e906e07e6725b14203b4ebdbdfcf2c95255", + "author": { + "email": "bitwiseman@gmail.com", + "name": "Liam Newman" + }, + "message": "Update src/test/java/org/kohsuke/github/AppTest.java", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/9c843e906e07e6725b14203b4ebdbdfcf2c95255" + }, + { + "sha": "177c386b918159560e9b46ec7d05b29770c217a1", + "author": { + "email": "bitwiseman@gmail.com", + "name": "Liam Newman" + }, + "message": "Test deploy key", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/177c386b918159560e9b46ec7d05b29770c217a1" + }, + { + "sha": "afe6732762df2ded429a2b4435ea31832ce33dad", + "author": { + "email": "bitwiseman@gmail.com", + "name": "Liam Newman" + }, + "message": "Merge pull request #1625 from MarcelHB/issue-1592/create_deploy_key_ro\n\nGHRepository: allows creating deploy keys being read-only", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/afe6732762df2ded429a2b4435ea31832ce33dad" + }, + { + "sha": "b29b53b2bb84083a5cb5b1eb9e293872acb227c7", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge branch 'main' into pbeitz/generic-install-provider", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/b29b53b2bb84083a5cb5b1eb9e293872acb227c7" + } + ] + }, + "public": true, + "created_at": "2023-04-14T09:19:44Z" + }, + { + "id": "28415472227", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 608727059, + "name": "PierreBtz/github-api", + "url": "https://api.github.com/repos/PierreBtz/github-api" + }, + "payload": { + "repository_id": 608727059, + "push_id": 13298733708, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/pbeitz/generic-install-provider", + "head": "6cf735603a20b71c3ca05681e091b62dcbfd7527", + "before": "e222a60017b9a598298ddcba7337b676b5756103", + "commits": [ + { + "sha": "6cf735603a20b71c3ca05681e091b62dcbfd7527", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "add test", + "distinct": true, + "url": "https://api.github.com/repos/PierreBtz/github-api/commits/6cf735603a20b71c3ca05681e091b62dcbfd7527" + } + ] + }, + "public": true, + "created_at": "2023-04-14T09:19:10Z" + }, + { + "id": "28364052091", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/574", + "id": 1642589356, + "node_id": "I_kwDOAIy5dc5h5-ys", + "number": 574, + "title": "The total numbers doesn't match for articles", + "user": { + "login": "RobertoPegoraro", + "id": 10342271, + "node_id": "MDQ6VXNlcjEwMzQyMjcx", + "avatar_url": "https://avatars.githubusercontent.com/u/10342271?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RobertoPegoraro", + "html_url": "https://github.com/RobertoPegoraro", + "followers_url": "https://api.github.com/users/RobertoPegoraro/followers", + "following_url": "https://api.github.com/users/RobertoPegoraro/following{/other_user}", + "gists_url": "https://api.github.com/users/RobertoPegoraro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RobertoPegoraro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RobertoPegoraro/subscriptions", + "organizations_url": "https://api.github.com/users/RobertoPegoraro/orgs", + "repos_url": "https://api.github.com/users/RobertoPegoraro/repos", + "events_url": "https://api.github.com/users/RobertoPegoraro/events{/privacy}", + "received_events_url": "https://api.github.com/users/RobertoPegoraro/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-03-27T18:19:29Z", + "updated_at": "2023-04-12T12:49:18Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nWhen I perform the request zd.getArticles(\"ja\") it returns 207 articles, but when I request using postman (Using the same credentials) in API https://myOrganization.zendesk.com/api/v2/help_center/ja/articles it returns 186 articles only.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Request the articles from some locale in postman\r\n2. Request the same articles for the same locale using the SDK\r\n\r\n**Expected behavior**\r\nShould be retrieved the exaclty number of articles\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: Mac OS Ventura 13.2.1\r\n - Postman Version 9.31.0\r\n - ZenDesk SDK Version 0.21.0\r\n - Java Version 11\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1505218602", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/574#issuecomment-1505218602", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574", + "id": 1505218602, + "node_id": "IC_kwDOAIy5dc5Zt9Aq", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-12T12:49:18Z", + "updated_at": "2023-04-12T12:49:18Z", + "author_association": "COLLABORATOR", + "body": "I'm having a hard time figuring out what might go wrong since I cannot reproduce (our instance doesn't use help desk).\r\nI'm also having a hard time figuring out why calling `/help_center/{locale}/articles.json` with curl gives a different answer since the calls are supposed to be identical.\r\nMy suggestion would be to activate the debug logs of the underlying http client (AsyncHttpClient by default) and check the exchanges between the library and the server.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1505218602/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-12T12:49:19Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28359531862", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/573", + "id": 1640304441, + "node_id": "I_kwDOAIy5dc5hxQ85", + "number": 573, + "title": "Cannot marshal Ticket to JSON", + "user": { + "login": "afm497", + "id": 586053, + "node_id": "MDQ6VXNlcjU4NjA1Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/586053?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/afm497", + "html_url": "https://github.com/afm497", + "followers_url": "https://api.github.com/users/afm497/followers", + "following_url": "https://api.github.com/users/afm497/following{/other_user}", + "gists_url": "https://api.github.com/users/afm497/gists{/gist_id}", + "starred_url": "https://api.github.com/users/afm497/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/afm497/subscriptions", + "organizations_url": "https://api.github.com/users/afm497/orgs", + "repos_url": "https://api.github.com/users/afm497/repos", + "events_url": "https://api.github.com/users/afm497/events{/privacy}", + "received_events_url": "https://api.github.com/users/afm497/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-03-25T01:29:27Z", + "updated_at": "2023-04-12T09:44:41Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nCannot, at least using both GSON and Jackson, marshal a Ticket to JSON. Multiple fields named **priority**. One in the Ticket itself, another in it's superclass, Request. The **priority** in Ticket is private, in Request it's protected. \r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Using the API, grab a Ticket object.\r\n2. Try to marshal to JSON using either GSON or Jackson. Though it probably would apply to others, only have used those.\r\n4. See IllegalArgumentException referencing multiple fields named \"**priority**\".\r\n\r\n**Expected behavior**\r\nAbility to marshal Ticket object to JSON for proper transmission.\r\n\r\n**Additional context**\r\nNot sure anymore is needed, but happy provide anything additional. \r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1504978372", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/573#issuecomment-1504978372", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573", + "id": 1504978372, + "node_id": "IC_kwDOAIy5dc5ZtCXE", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-12T09:44:41Z", + "updated_at": "2023-04-12T09:44:41Z", + "author_association": "COLLABORATOR", + "body": "I agree with you, I'm afraid I just don't have time to invest on the library currently. Code change itself looks trivial, but testing nothing is broken is not. I'm happy to accept a PR though :)", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1504978372/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-12T09:44:41Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28359451313", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-12T09:41:30Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28359451020", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13270911161, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "2c114cf9fbb3bc45a9d18e7b334e4c000af6dc97", + "before": "4d2e6aab55a45d585f11f53a029513db8cecf43f", + "commits": [ + { + "sha": "47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump maven-enforcer-plugin from 3.2.1 to 3.3.0\n\nBumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.2.1 to 3.3.0.\n- [Release notes](https://github.com/apache/maven-enforcer/releases)\n- [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.2.1...enforcer-3.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-enforcer-plugin\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/47c83b4f66de432c5246c90d75d2044e5f05f1a8" + }, + { + "sha": "2c114cf9fbb3bc45a9d18e7b334e4c000af6dc97", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #580 from cloudbees-oss/dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/2c114cf9fbb3bc45a9d18e7b334e4c000af6dc97" + } + ] + }, + "public": true, + "created_at": "2023-04-12T09:41:29Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28359450806", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 580, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580", + "id": 1303777372, + "node_id": "PR_kwDOAIy5dc5NthBc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580", + "number": 580, + "state": "closed", + "locked": false, + "title": "Bump maven-enforcer-plugin from 3.2.1 to 3.3.0", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.2.1 to 3.3.0.\n

    \nRelease notes\n

    Sourced from maven-enforcer-plugin's releases.

    \n
    \n

    3.3.0

    \n\n

    🚀 New features and improvements

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n

    📝 Documentation updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • 4e14e11 [maven-release-plugin] prepare release enforcer-3.3.0
    • \n
    • 523f5ce [MENFORCER-472] Bump maven-invoker-plugin from 3.5.0 to 3.5.1 (#266)
    • \n
    • 427b213 [MENFORCER-473] Notice about max JDK in custom rules
    • \n
    • 6feac61 improve documentation of banDynamicVersions
    • \n
    • 435807f Install maven-enforcer-plugin for ITs in maven-enforcer-extension
    • \n
    • 5895ff2 [MENFORCER-467] banDynamicVersions excludedScopes on project level (#262)
    • \n
    • 7848853 [MENFORCER-276] Allow ignoring dependency scopes in RequireUpperBoundDeps
    • \n
    • 42dacab [MENFORCER-476] Rename ResolveUtil to ResolverUtil
    • \n
    • 5e0ca5a [MENFORCER-474] Filter dependency by scope on project level
    • \n
    • 57746a1 [MENFORCER-465] Remove superfluous blanks in BanDuplicatePomDependencyVersions
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-enforcer-plugin&package-manager=maven&previous-version=3.2.1&new-version=3.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-04-05T20:56:42Z", + "updated_at": "2023-04-12T09:41:28Z", + "closed_at": "2023-04-12T09:41:28Z", + "merged_at": "2023-04-12T09:41:28Z", + "merge_commit_sha": "2c114cf9fbb3bc45a9d18e7b334e4c000af6dc97", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "sha": "47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-12T09:41:27Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1169, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 241, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 241, + "open_issues": 4, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "4d2e6aab55a45d585f11f53a029513db8cecf43f", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-12T09:41:27Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1169, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 241, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 241, + "open_issues": 4, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/47c83b4f66de432c5246c90d75d2044e5f05f1a8" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-04-12T09:41:29Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28359448541", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1380927918, + "node_id": "PRR_kwDOAIy5dc5ST0mu", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "submitted_at": "2023-04-12T09:41:23Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580#pullrequestreview-1380927918", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580#pullrequestreview-1380927918" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580", + "id": 1303777372, + "node_id": "PR_kwDOAIy5dc5NthBc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580", + "number": 580, + "state": "open", + "locked": false, + "title": "Bump maven-enforcer-plugin from 3.2.1 to 3.3.0", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.2.1 to 3.3.0.\n
    \nRelease notes\n

    Sourced from maven-enforcer-plugin's releases.

    \n
    \n

    3.3.0

    \n\n

    🚀 New features and improvements

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n

    📝 Documentation updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • 4e14e11 [maven-release-plugin] prepare release enforcer-3.3.0
    • \n
    • 523f5ce [MENFORCER-472] Bump maven-invoker-plugin from 3.5.0 to 3.5.1 (#266)
    • \n
    • 427b213 [MENFORCER-473] Notice about max JDK in custom rules
    • \n
    • 6feac61 improve documentation of banDynamicVersions
    • \n
    • 435807f Install maven-enforcer-plugin for ITs in maven-enforcer-extension
    • \n
    • 5895ff2 [MENFORCER-467] banDynamicVersions excludedScopes on project level (#262)
    • \n
    • 7848853 [MENFORCER-276] Allow ignoring dependency scopes in RequireUpperBoundDeps
    • \n
    • 42dacab [MENFORCER-476] Rename ResolveUtil to ResolverUtil
    • \n
    • 5e0ca5a [MENFORCER-474] Filter dependency by scope on project level
    • \n
    • 57746a1 [MENFORCER-465] Remove superfluous blanks in BanDuplicatePomDependencyVersions
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-enforcer-plugin&package-manager=maven&previous-version=3.2.1&new-version=3.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-04-05T20:56:42Z", + "updated_at": "2023-04-12T09:41:23Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "5e9f0a196c876fab18b806870a66f9f95561f632", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.3.0", + "sha": "47c83b4f66de432c5246c90d75d2044e5f05f1a8", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-05T20:56:42Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1169, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 241, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 241, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "4d2e6aab55a45d585f11f53a029513db8cecf43f", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-05T20:56:42Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1169, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 241, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 241, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/580" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/580/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/580/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/47c83b4f66de432c5246c90d75d2044e5f05f1a8" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-12T09:41:23Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28163430252", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "id": 1615536590, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "number": 560, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T12:21:16Z", + "closed_at": "2023-04-03T10:13:12Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "merged_at": "2023-04-03T10:13:12Z" + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494224273", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#issuecomment-1494224273", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "id": 1494224273, + "node_id": "IC_kwDOAIy5dc5ZEA2R", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-03T12:21:15Z", + "updated_at": "2023-04-03T12:21:15Z", + "author_association": "COLLABORATOR", + "body": "Interesting, I wasn't aware editorconfig was providing a Maven plugin. I'll have a look.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494224273/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-03T12:21:16Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28161083643", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "id": 1615536590, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "number": 560, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:46:18Z", + "closed_at": "2023-04-03T10:13:12Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "merged_at": "2023-04-03T10:13:12Z" + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494092762", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#issuecomment-1494092762", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "id": 1494092762, + "node_id": "IC_kwDOAIy5dc5ZDgva", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-03T10:46:17Z", + "updated_at": "2023-04-03T10:46:17Z", + "author_association": "COLLABORATOR", + "body": "@andy-may-at indeed I noticed that too (project has a lot of history with a lot of different contributors and maintainers). \r\nI was recently contributing to a project that was using https://github.com/diffplug/spotless/tree/main/plugin-maven to keep things clean (it fails the build if the formatting is messed up). I had something like that in mind.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494092762/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-03T10:46:18Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160634909", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168367709, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "4d2e6aab55a45d585f11f53a029513db8cecf43f", + "before": "761d2754d9e65a3d20e5d75843b783c7750d1333", + "commits": [ + { + "sha": "4d2e6aab55a45d585f11f53a029513db8cecf43f", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/4d2e6aab55a45d585f11f53a029513db8cecf43f" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:26:55Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160631879", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "zendesk-java-client-0.22.0", + "ref_type": "tag", + "master_branch": "master", + "description": "A Java client library for interacting with Zendesk", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-03T10:26:48Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160629606", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168365184, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "761d2754d9e65a3d20e5d75843b783c7750d1333", + "before": "c0283d3ea5850b8d935457947a67df88ff186b2b", + "commits": [ + { + "sha": "761d2754d9e65a3d20e5d75843b783c7750d1333", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare release zendesk-java-client-0.22.0", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/761d2754d9e65a3d20e5d75843b783c7750d1333" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:26:42Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160297445", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/559", + "id": 1615476484, + "node_id": "I_kwDOAIy5dc5gSjcE", + "number": 559, + "title": "Add support for the Content Tag resource (in the Help Center API)", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-08T15:34:42Z", + "updated_at": "2023-04-03T10:13:25Z", + "closed_at": "2023-04-03T10:13:25Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe client does not currently expose this API resource.\r\n\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Describe the solution you'd like**\r\nThe client to expose CRUD & searching on this resource\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730\r\n\r\nI'm currently working on building a PR to implement this feature request\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/559/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-04-03T10:13:26Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160292429", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168194376, + "size": 5, + "distinct_size": 5, + "ref": "refs/heads/master", + "head": "c0283d3ea5850b8d935457947a67df88ff186b2b", + "before": "3a92607ca8e0db597f7e3205ca7bd9dfe3756bd2", + "commits": [ + { + "sha": "0d21b31d73ee956d941bfb18add5815574fec82c", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Add model for Content Tag resource", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/0d21b31d73ee956d941bfb18add5815574fec82c" + }, + { + "sha": "0620db75d7ec58af2d7de8fa5a9a87e90246c06d", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Implement CRUD for Content Tags", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/0620db75d7ec58af2d7de8fa5a9a87e90246c06d" + }, + { + "sha": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Implement search for Content Tags\n\nContentTag pagination sadly doesn't conform to Zendesk's standards.\nIt uses cursor pagination, but doesn't include a `links.next` node in the response (which would normally hold the URL of the next page of results).\nBecause of this, we have to build the 'next page URL' ourselves by extracting the `meta.after_cursor` node value & using it to add a `&page[after]=` parameter to the original query URL", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/8f764129b879252cfb84adcc8c324a49cfd9b36e" + }, + { + "sha": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Update src/main/java/org/zendesk/client/v2/model/hc/ContentTag.java", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/e7976c8dae29cfd3610da3227bede40d17d49db0" + }, + { + "sha": "c0283d3ea5850b8d935457947a67df88ff186b2b", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #560 from andy-may-at/issue/559/implement_content_tags_resource", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/c0283d3ea5850b8d935457947a67df88ff186b2b" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:13:14Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160292389", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 560, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "closed", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:13:12Z", + "closed_at": "2023-04-03T10:13:12Z", + "merged_at": "2023-04-03T10:13:12Z", + "merge_commit_sha": "c0283d3ea5850b8d935457947a67df88ff186b2b", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-04-03T10:09:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:13:12Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 3, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 2, + "review_comments": 1, + "maintainer_can_modify": false, + "commits": 4, + "additions": 419, + "deletions": 1, + "changed_files": 7 + } + }, + "public": true, + "created_at": "2023-04-03T10:13:14Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160220960", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/github_actions/actions/stale-8", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-03T10:10:28Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160220603", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168159650, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "3a92607ca8e0db597f7e3205ca7bd9dfe3756bd2", + "before": "f8c952915b1debec37f7191aeab672fe1e5da85c", + "commits": [ + { + "sha": "c72412227328d34dd9dd196f5f5ceab0148e7f28", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump actions/stale from 7 to 8\n\nBumps [actions/stale](https://github.com/actions/stale) from 7 to 8.\n- [Release notes](https://github.com/actions/stale/releases)\n- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/stale/compare/v7...v8)\n\n---\nupdated-dependencies:\n- dependency-name: actions/stale\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/c72412227328d34dd9dd196f5f5ceab0148e7f28" + }, + { + "sha": "3a92607ca8e0db597f7e3205ca7bd9dfe3756bd2", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #572 from cloudbees-oss/dependabot/github_actions/actions/stale-8", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/3a92607ca8e0db597f7e3205ca7bd9dfe3756bd2" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:10:27Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160220379", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 572, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572", + "id": 1288102748, + "node_id": "PR_kwDOAIy5dc5MxuNc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572", + "number": 572, + "state": "closed", + "locked": false, + "title": "Bump actions/stale from 7 to 8", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [actions/stale](https://github.com/actions/stale) from 7 to 8.\n
    \nRelease notes\n

    Sourced from actions/stale's releases.

    \n
    \n

    v8.0.0

    \n

    :warning: This version contains breaking changes :warning:

    \n

    What's Changed

    \n\n

    Breaking Changes

    \n
      \n
    • In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail
    • \n
    \n

    Example

    \n
    name: 'Remove labels when the issue or PR becomes stale'\non:\n  schedule:\n    - cron: '30 1 * * *'\n

    permissions:\npull-request: write

    \n

    jobs:\nstale:\nruns-on: ubuntu-latest\nsteps:\n- uses: actions/stale@v8\nwith:\nlabels-to-remove-when-stale: 'label1,label2'\n

    \n
    \n
    \n
    \nChangelog\n

    Sourced from actions/stale's changelog.

    \n
    \n

    Changelog

    \n

    [7.0.0]

    \n

    :warning: Breaking change :warning:

    \n\n

    [6.0.1]

    \n

    Update @​actions/core to v1.10.0 (#839)

    \n

    [6.0.0]

    \n

    :warning: Breaking change :warning:

    \n

    Issues/PRs default close-issue-reason is now not_planned(#789)

    \n

    [5.1.0]

    \n

    Don't process stale issues right after they're marked stale\n[Add close-issue-reason option]#764#772\nVarious dependabot/dependency updates

    \n

    4.1.0 (2021-07-14)

    \n

    Features

    \n\n

    4.0.0 (2021-07-14)

    \n

    Features

    \n
      \n
    • options: simplify config by removing skip stale message options (#457) (6ec637d), closes #405 #455
    • \n
    • output: print output parameters (#458) (3e6d35b)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • dry-run: forbid mutations in dry-run (#500) (f1017f3), closes #499
    • \n
    • logs: coloured logs (#465) (5fbbfba)
    • \n
    • operations: fail fast the current batch to respect the operations limit (#474) (5f6f311), closes #466
    • \n
    • label comparison: make label comparison case insensitive #517, closes #516
    • \n
    • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#519), fixes #441, #509, #518
    • \n
    \n

    Breaking Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1160a22 Merge pull request #965 from actions/dependabot/npm_and_yarn/prettier-2.8.6
    • \n
    • 5f7b396 build(deps-dev): bump prettier from 2.8.4 to 2.8.6
    • \n
    • b002e7e Merge pull request #941 from panticmilos/vmpantic/rebuild-dist-vercel-bump
    • \n
    • 5290373 Rebuild dist after rebase
    • \n
    • b006677 Merge pull request #962 from actions/dependabot/npm_and_yarn/jest-and-types/j...
    • \n
    • 4f29769 Merge pull request #961 from actions/dependabot/npm_and_yarn/typescript-5.0.2
    • \n
    • 83453dd build(deps-dev): bump jest and @​types/jest
    • \n
    • 79e8c04 Merge pull request #960 from actions/dependabot/npm_and_yarn/types/node-18.15.3
    • \n
    • 75d4d95 Remove labels on stale (#959)
    • \n
    • fac2d41 build(deps-dev): bump typescript from 4.9.4 to 5.0.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=7&new-version=8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-23T20:59:00Z", + "updated_at": "2023-04-03T10:10:25Z", + "closed_at": "2023-04-03T10:10:25Z", + "merged_at": "2023-04-03T10:10:25Z", + "merge_commit_sha": "3a92607ca8e0db597f7e3205ca7bd9dfe3756bd2", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c72412227328d34dd9dd196f5f5ceab0148e7f28", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/actions/stale-8", + "ref": "dependabot/github_actions/actions/stale-8", + "sha": "c72412227328d34dd9dd196f5f5ceab0148e7f28", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:25Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 4, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:25Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 4, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c72412227328d34dd9dd196f5f5ceab0148e7f28" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-04-03T10:10:26Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160218081", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368720358, + "node_id": "PRR_kwDOAIy5dc5RlQPm", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "c72412227328d34dd9dd196f5f5ceab0148e7f28", + "submitted_at": "2023-04-03T10:10:20Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572#pullrequestreview-1368720358", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572#pullrequestreview-1368720358" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572", + "id": 1288102748, + "node_id": "PR_kwDOAIy5dc5MxuNc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572", + "number": 572, + "state": "open", + "locked": false, + "title": "Bump actions/stale from 7 to 8", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [actions/stale](https://github.com/actions/stale) from 7 to 8.\n
    \nRelease notes\n

    Sourced from actions/stale's releases.

    \n
    \n

    v8.0.0

    \n

    :warning: This version contains breaking changes :warning:

    \n

    What's Changed

    \n\n

    Breaking Changes

    \n
      \n
    • In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail
    • \n
    \n

    Example

    \n
    name: 'Remove labels when the issue or PR becomes stale'\non:\n  schedule:\n    - cron: '30 1 * * *'\n

    permissions:\npull-request: write

    \n

    jobs:\nstale:\nruns-on: ubuntu-latest\nsteps:\n- uses: actions/stale@v8\nwith:\nlabels-to-remove-when-stale: 'label1,label2'\n

    \n
    \n
    \n
    \nChangelog\n

    Sourced from actions/stale's changelog.

    \n
    \n

    Changelog

    \n

    [7.0.0]

    \n

    :warning: Breaking change :warning:

    \n\n

    [6.0.1]

    \n

    Update @​actions/core to v1.10.0 (#839)

    \n

    [6.0.0]

    \n

    :warning: Breaking change :warning:

    \n

    Issues/PRs default close-issue-reason is now not_planned(#789)

    \n

    [5.1.0]

    \n

    Don't process stale issues right after they're marked stale\n[Add close-issue-reason option]#764#772\nVarious dependabot/dependency updates

    \n

    4.1.0 (2021-07-14)

    \n

    Features

    \n\n

    4.0.0 (2021-07-14)

    \n

    Features

    \n
      \n
    • options: simplify config by removing skip stale message options (#457) (6ec637d), closes #405 #455
    • \n
    • output: print output parameters (#458) (3e6d35b)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • dry-run: forbid mutations in dry-run (#500) (f1017f3), closes #499
    • \n
    • logs: coloured logs (#465) (5fbbfba)
    • \n
    • operations: fail fast the current batch to respect the operations limit (#474) (5f6f311), closes #466
    • \n
    • label comparison: make label comparison case insensitive #517, closes #516
    • \n
    • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#519), fixes #441, #509, #518
    • \n
    \n

    Breaking Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 1160a22 Merge pull request #965 from actions/dependabot/npm_and_yarn/prettier-2.8.6
    • \n
    • 5f7b396 build(deps-dev): bump prettier from 2.8.4 to 2.8.6
    • \n
    • b002e7e Merge pull request #941 from panticmilos/vmpantic/rebuild-dist-vercel-bump
    • \n
    • 5290373 Rebuild dist after rebase
    • \n
    • b006677 Merge pull request #962 from actions/dependabot/npm_and_yarn/jest-and-types/j...
    • \n
    • 4f29769 Merge pull request #961 from actions/dependabot/npm_and_yarn/typescript-5.0.2
    • \n
    • 83453dd build(deps-dev): bump jest and @​types/jest
    • \n
    • 79e8c04 Merge pull request #960 from actions/dependabot/npm_and_yarn/types/node-18.15.3
    • \n
    • 75d4d95 Remove labels on stale (#959)
    • \n
    • fac2d41 build(deps-dev): bump typescript from 4.9.4 to 5.0.2
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=7&new-version=8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-23T20:59:00Z", + "updated_at": "2023-04-03T10:10:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ffd6a26a6127908ec7e1cd8764f20a8dfe859341", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c72412227328d34dd9dd196f5f5ceab0148e7f28", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/actions/stale-8", + "ref": "dependabot/github_actions/actions/stale-8", + "sha": "c72412227328d34dd9dd196f5f5ceab0148e7f28", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:14Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:14Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/572" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/572/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/572/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c72412227328d34dd9dd196f5f5ceab0148e7f28" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:10:21Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160215240", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-03T10:10:15Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160214964", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168156950, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "f8c952915b1debec37f7191aeab672fe1e5da85c", + "before": "36f68398fb0268eb2d305f6ed761383335f018b0", + "commits": [ + { + "sha": "2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump animal-sniffer-enforcer-rule from 1.22 to 1.23\n\nBumps [animal-sniffer-enforcer-rule](https://github.com/mojohaus/animal-sniffer) from 1.22 to 1.23.\n- [Release notes](https://github.com/mojohaus/animal-sniffer/releases)\n- [Commits](https://github.com/mojohaus/animal-sniffer/compare/animal-sniffer-parent-1.22...1.23)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:animal-sniffer-enforcer-rule\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/2dac87e6afabc3bdb8807382ab6bfd86cadf4fba" + }, + { + "sha": "f8c952915b1debec37f7191aeab672fe1e5da85c", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #575 from cloudbees-oss/dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/f8c952915b1debec37f7191aeab672fe1e5da85c" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:10:14Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160214703", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 575, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575", + "id": 1291985744, + "node_id": "PR_kwDOAIy5dc5NAiNQ", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575", + "number": 575, + "state": "closed", + "locked": false, + "title": "Bump animal-sniffer-enforcer-rule from 1.22 to 1.23", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [animal-sniffer-enforcer-rule](https://github.com/mojohaus/animal-sniffer) from 1.22 to 1.23.\n
    \nRelease notes\n

    Sourced from animal-sniffer-enforcer-rule's releases.

    \n
    \n

    1.23

    \n\n

    🚀 New features and improvements

    \n\n

    📦 Dependency updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • bae2423 [maven-release-plugin] prepare release 1.23
    • \n
    • 90f22e4 Refresh documentation site
    • \n
    • 49fdd5d Bump parent from 70 to 74 and poms cleanup
    • \n
    • fa0f098 Get rid of maven-compat use Resolver API
    • \n
    • 4f547b0 (ci) Use latest releases of Maven 3.9.1 and 3.8.8
    • \n
    • ac9296b Bump maven-surefire-plugin from 2.22.2 to 3.0.0
    • \n
    • f343158 Prepare to run on Java 19+
    • \n
    • 797ccf7 Bump plexus-utils from 3.5.0 to 3.5.1
    • \n
    • 2ce6d43 Bump maven-plugin-plugin from 3.7.1 to 3.8.1
    • \n
    • 9452d08 Bump maven-plugin-annotations from 3.7.1 to 3.8.1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:animal-sniffer-enforcer-rule&package-manager=maven&previous-version=1.22&new-version=1.23)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-27T20:56:44Z", + "updated_at": "2023-04-03T10:10:13Z", + "closed_at": "2023-04-03T10:10:12Z", + "merged_at": "2023-04-03T10:10:12Z", + "merge_commit_sha": "f8c952915b1debec37f7191aeab672fe1e5da85c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "ref": "dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "sha": "2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:12Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:12Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 5, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2dac87e6afabc3bdb8807382ab6bfd86cadf4fba" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-04-03T10:10:14Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160212235", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368719885, + "node_id": "PRR_kwDOAIy5dc5RlQIN", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "submitted_at": "2023-04-03T10:10:08Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575#pullrequestreview-1368719885", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575#pullrequestreview-1368719885" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575", + "id": 1291985744, + "node_id": "PR_kwDOAIy5dc5NAiNQ", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575", + "number": 575, + "state": "open", + "locked": false, + "title": "Bump animal-sniffer-enforcer-rule from 1.22 to 1.23", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [animal-sniffer-enforcer-rule](https://github.com/mojohaus/animal-sniffer) from 1.22 to 1.23.\n
    \nRelease notes\n

    Sourced from animal-sniffer-enforcer-rule's releases.

    \n
    \n

    1.23

    \n\n

    🚀 New features and improvements

    \n\n

    📦 Dependency updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • bae2423 [maven-release-plugin] prepare release 1.23
    • \n
    • 90f22e4 Refresh documentation site
    • \n
    • 49fdd5d Bump parent from 70 to 74 and poms cleanup
    • \n
    • fa0f098 Get rid of maven-compat use Resolver API
    • \n
    • 4f547b0 (ci) Use latest releases of Maven 3.9.1 and 3.8.8
    • \n
    • ac9296b Bump maven-surefire-plugin from 2.22.2 to 3.0.0
    • \n
    • f343158 Prepare to run on Java 19+
    • \n
    • 797ccf7 Bump plexus-utils from 3.5.0 to 3.5.1
    • \n
    • 2ce6d43 Bump maven-plugin-plugin from 3.7.1 to 3.8.1
    • \n
    • 9452d08 Bump maven-plugin-annotations from 3.7.1 to 3.8.1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:animal-sniffer-enforcer-rule&package-manager=maven&previous-version=1.22&new-version=1.23)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-27T20:56:44Z", + "updated_at": "2023-04-03T10:10:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8f66f931a21a6f2eb48b365caf73ffc786a18ff2", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "ref": "dependabot/maven/org.codehaus.mojo-animal-sniffer-enforcer-rule-1.23", + "sha": "2dac87e6afabc3bdb8807382ab6bfd86cadf4fba", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:00Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:10:00Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/575" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/575/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/575/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2dac87e6afabc3bdb8807382ab6bfd86cadf4fba" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:10:08Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-4.json new file mode 100644 index 0000000000..68f25b6dee --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-4.json @@ -0,0 +1,6681 @@ +[ + { + "id": "28160208988", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-03T10:10:01Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160208860", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13168153906, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "36f68398fb0268eb2d305f6ed761383335f018b0", + "before": "5c5d118cf0d32778077cb1163161bcc3dbbbfc16", + "commits": [ + { + "sha": "f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump extra-enforcer-rules from 1.6.1 to 1.6.2\n\nBumps [extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules) from 1.6.1 to 1.6.2.\n- [Release notes](https://github.com/mojohaus/extra-enforcer-rules/releases)\n- [Commits](https://github.com/mojohaus/extra-enforcer-rules/compare/extra-enforcer-rules-1.6.1...1.6.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:extra-enforcer-rules\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/f2a2d86d4a98efd6759b8df89864ae52e8d1c72e" + }, + { + "sha": "36f68398fb0268eb2d305f6ed761383335f018b0", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #576 from cloudbees-oss/dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/36f68398fb0268eb2d305f6ed761383335f018b0" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:10:01Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160208678", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 576, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576", + "id": 1295272495, + "node_id": "PR_kwDOAIy5dc5NNEov", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576", + "number": 576, + "state": "closed", + "locked": false, + "title": "Bump extra-enforcer-rules from 1.6.1 to 1.6.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules) from 1.6.1 to 1.6.2.\n
    \nRelease notes\n

    Sourced from extra-enforcer-rules's releases.

    \n
    \n

    1.6.2

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • bc834e6 [maven-release-plugin] prepare release 1.6.2
    • \n
    • f257b04 Fix broken links in documentation
    • \n
    • 6803922 Use Maven 3.9.1 on GitHub
    • \n
    • 829dade Bump spring-core in /src/it/banduplicate-classes-wildcard-exclusion
    • \n
    • 1e7b0e3 Bump mojo-parent from 73 to 74
    • \n
    • de48f6d Add .git-blame-ignore-revs with last code reformat
    • \n
    • f97cc25 Enable checkstyle and spotless plugins - code reformat
    • \n
    • 8a9addf Enable checkstyle and spotless plugins
    • \n
    • 86feda3 Use Maven 3.9.0 for build on GitHub
    • \n
    • ebb2df5 Bump parent from 70 to 73
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:extra-enforcer-rules&package-manager=maven&previous-version=1.6.1&new-version=1.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-29T20:56:56Z", + "updated_at": "2023-04-03T10:10:00Z", + "closed_at": "2023-04-03T10:09:59Z", + "merged_at": "2023-04-03T10:09:59Z", + "merge_commit_sha": "36f68398fb0268eb2d305f6ed761383335f018b0", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "ref": "dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "sha": "f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:09:59Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:09:59Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f2a2d86d4a98efd6759b8df89864ae52e8d1c72e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-04-03T10:10:01Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160206186", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368719376, + "node_id": "PRR_kwDOAIy5dc5RlQAQ", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "submitted_at": "2023-04-03T10:09:54Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576#pullrequestreview-1368719376", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576#pullrequestreview-1368719376" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576", + "id": 1295272495, + "node_id": "PR_kwDOAIy5dc5NNEov", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576", + "number": 576, + "state": "open", + "locked": false, + "title": "Bump extra-enforcer-rules from 1.6.1 to 1.6.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules) from 1.6.1 to 1.6.2.\n
    \nRelease notes\n

    Sourced from extra-enforcer-rules's releases.

    \n
    \n

    1.6.2

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n

    👻 Maintenance

    \n\n
    \n
    \n
    \nCommits\n
      \n
    • bc834e6 [maven-release-plugin] prepare release 1.6.2
    • \n
    • f257b04 Fix broken links in documentation
    • \n
    • 6803922 Use Maven 3.9.1 on GitHub
    • \n
    • 829dade Bump spring-core in /src/it/banduplicate-classes-wildcard-exclusion
    • \n
    • 1e7b0e3 Bump mojo-parent from 73 to 74
    • \n
    • de48f6d Add .git-blame-ignore-revs with last code reformat
    • \n
    • f97cc25 Enable checkstyle and spotless plugins - code reformat
    • \n
    • 8a9addf Enable checkstyle and spotless plugins
    • \n
    • 86feda3 Use Maven 3.9.0 for build on GitHub
    • \n
    • ebb2df5 Bump parent from 70 to 73
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:extra-enforcer-rules&package-manager=maven&previous-version=1.6.1&new-version=1.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-29T20:56:56Z", + "updated_at": "2023-04-03T10:09:55Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1062284abcb59e29ead419aafe8ced52939ae3e7", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "ref": "dependabot/maven/org.codehaus.mojo-extra-enforcer-rules-1.6.2", + "sha": "f2a2d86d4a98efd6759b8df89864ae52e8d1c72e", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:09:22Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:09:22Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/576" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/576/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/576/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f2a2d86d4a98efd6759b8df89864ae52e8d1c72e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:09:55Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160199146", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368718765, + "node_id": "PRR_kwDOAIy5dc5RlP2t", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "submitted_at": "2023-04-03T10:09:39Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368718765", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368718765" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "open", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:09:39Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "833249fbb145b6169c12688bb00197a5c0e77fff", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-04-03T10:09:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T10:09:22Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:09:40Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160191895", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 610732619, + "name": "andy-may-at/zendesk-java-client", + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client" + }, + "payload": { + "repository_id": 610732619, + "push_id": 13168145821, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/issue/559/implement_content_tags_resource", + "head": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "before": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "commits": [ + { + "sha": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Update src/main/java/org/zendesk/client/v2/model/hc/ContentTag.java", + "distinct": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits/e7976c8dae29cfd3610da3227bede40d17d49db0" + } + ] + }, + "public": true, + "created_at": "2023-04-03T10:09:23Z" + }, + { + "id": "28160191478", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368689474, + "node_id": "PRR_kwDOAIy5dc5RlItC", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgmt, nice work.\r\nI'm taking the library to commit the fix on the javadoc to be able to merge and release", + "commit_id": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "submitted_at": "2023-04-03T10:09:15Z", + "state": "dismissed", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "open", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:09:22Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "29a9e49c7cefcc44ecd9f7f7a409d6a372cf2598", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "e7976c8dae29cfd3610da3227bede40d17d49db0", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-04-03T10:09:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T09:50:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e7976c8dae29cfd3610da3227bede40d17d49db0" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:09:22Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160189005", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1155739992", + "pull_request_review_id": 1368689474, + "id": 1155739992, + "node_id": "PRRC_kwDOAIy5dc5E4zFY", + "diff_hunk": "@@ -0,0 +1,95 @@\n+package org.zendesk.client.v2.model.hc;\n+\n+import com.fasterxml.jackson.annotation.JsonProperty;\n+\n+import java.util.Date;\n+import java.util.Objects;\n+\n+/**\n+ * You can assign a content tag to posts and articles to loosely group them together.\n+ *

    ", + "path": "src/main/java/org/zendesk/client/v2/model/hc/ContentTag.java", + "position": 10, + "original_position": 10, + "commit_id": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "original_commit_id": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "No matching `

    ` this fails the javadoc generation:\r\n\r\n```\r\n Error: Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.10.3:jar (attach-javadocs) on project zendesk-java-client: MavenReportException: Error while generating Javadoc: \r\nError: Exit code: 1 - /home/runner/work/zendesk-java-client/zendesk-java-client/src/main/java/org/zendesk/client/v2/model/hc/ContentTag.java:10: error: unexpected end tag:

    \r\nError: *

    \r\n```\r\n\r\n```suggestion\r\n```", + "created_at": "2023-04-03T09:53:58Z", + "updated_at": "2023-04-03T10:09:16Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#discussion_r1155739992", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1155739992" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#discussion_r1155739992" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1155739992/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 10, + "original_line": 10, + "side": "RIGHT", + "subject_type": "line" + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "open", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:09:16Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "29a9e49c7cefcc44ecd9f7f7a409d6a372cf2598", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-22T17:51:13Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T09:50:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T09:53:58Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160188948", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368689474, + "node_id": "PRR_kwDOAIy5dc5RlItC", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgmt, nice work.\r\nI'm taking the library to commit the fix on the javadoc to be able to merge and release", + "commit_id": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "submitted_at": "2023-04-03T10:09:15Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "open", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:09:16Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "29a9e49c7cefcc44ecd9f7f7a409d6a372cf2598", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-22T17:51:13Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T09:50:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:09:17Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28160188852", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368689474, + "node_id": "PRR_kwDOAIy5dc5RlItC", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgmt, nice work.\r\nI'm taking the library to commit the fix on the javadoc to be able to merge and release", + "commit_id": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "submitted_at": "2023-04-03T10:09:15Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#pullrequestreview-1368689474" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "id": 1268109239, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "number": 560, + "state": "open", + "locked": false, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-04-03T10:09:16Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "29a9e49c7cefcc44ecd9f7f7a409d6a372cf2598", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e", + "head": { + "label": "andy-may-at:issue/559/implement_content_tags_resource", + "ref": "issue/559/implement_content_tags_resource", + "sha": "8f764129b879252cfb84adcc8c324a49cfd9b36e", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-22T17:51:13Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1127, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T09:50:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/8f764129b879252cfb84adcc8c324a49cfd9b36e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T10:09:17Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159668736", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/534", + "id": 1516159841, + "node_id": "I_kwDOAIy5dc5aXsNh", + "number": 534, + "title": "Help Center Section parent id attribute", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + }, + { + "id": 3476468010, + "node_id": "LA_kwDOAIy5dc7PNrEq", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/Stale", + "name": "Stale", + "color": "ededed", + "default": false, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-01-02T08:51:38Z", + "updated_at": "2023-04-03T09:50:10Z", + "closed_at": "2023-03-11T08:05:24Z", + "author_association": "COLLABORATOR", + "active_lock_reason": null, + "body": "### Discussed in https://github.com/cloudbees-oss/zendesk-java-client/discussions/514\r\n\r\n
    \r\n\r\nOriginally posted by **pmorddny** October 10, 2022\r\nOn the API documentation https://developer.zendesk.com/api-reference/help_center/help-center-api/sections/ there's a parent_section_id attribute mentioned. I don't see it on the Section class. Could it be added when you get a chance?\r\n\r\nthanks!
    ", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/534/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-04-03T09:50:11Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159668283", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 571, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571", + "id": 1285672122, + "node_id": "PR_kwDOAIy5dc5Mocy6", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571", + "number": 571, + "state": "closed", + "locked": false, + "title": "added parent section id to section", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes https://github.com/cloudbees-oss/zendesk-java-client/issues/534\r\n\r\nI can't add any tests for this since i don't know the structure of your Zendesk help center you use for testing.", + "created_at": "2023-03-22T11:11:22Z", + "updated_at": "2023-04-03T09:50:09Z", + "closed_at": "2023-04-03T09:50:08Z", + "merged_at": "2023-04-03T09:50:08Z", + "merge_commit_sha": "5c5d118cf0d32778077cb1163161bcc3dbbbfc16", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/4e944cbdae04e0be204aaf434965f2884e34834b", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "4e944cbdae04e0be204aaf434965f2884e34834b", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-22T11:09:13Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1120, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-04-03T09:50:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/4e944cbdae04e0be204aaf434965f2884e34834b" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 12, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-04-03T09:50:10Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159668409", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13167905429, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "5c5d118cf0d32778077cb1163161bcc3dbbbfc16", + "before": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "commits": [ + { + "sha": "4e944cbdae04e0be204aaf434965f2884e34834b", + "author": { + "email": "florian.waltenberger@lingohub.com", + "name": "Florian Waltenberger" + }, + "message": "added parent section id to section", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/4e944cbdae04e0be204aaf434965f2884e34834b" + }, + { + "sha": "5c5d118cf0d32778077cb1163161bcc3dbbbfc16", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #571 from Walti91/master", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/5c5d118cf0d32778077cb1163161bcc3dbbbfc16" + } + ] + }, + "public": true, + "created_at": "2023-04-03T09:50:10Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159665772", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1368682734, + "node_id": "PRR_kwDOAIy5dc5RlHDu", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm thanks", + "commit_id": "4e944cbdae04e0be204aaf434965f2884e34834b", + "submitted_at": "2023-04-03T09:50:03Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571#pullrequestreview-1368682734", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571#pullrequestreview-1368682734" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571", + "id": 1285672122, + "node_id": "PR_kwDOAIy5dc5Mocy6", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571", + "number": 571, + "state": "open", + "locked": false, + "title": "added parent section id to section", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes https://github.com/cloudbees-oss/zendesk-java-client/issues/534\r\n\r\nI can't add any tests for this since i don't know the structure of your Zendesk help center you use for testing.", + "created_at": "2023-03-22T11:11:22Z", + "updated_at": "2023-04-03T09:50:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "825a4f0503051b183f482a485f7e474762d6296e", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/4e944cbdae04e0be204aaf434965f2884e34834b", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "4e944cbdae04e0be204aaf434965f2884e34834b", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-22T11:09:13Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1120, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2023-04-03T09:31:03Z", + "pushed_at": "2023-03-29T20:56:57Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1134, + "stargazers_count": 146, + "watchers_count": 146, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 146, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/571" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/571/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/571/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/4e944cbdae04e0be204aaf434965f2884e34834b" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-04-03T09:50:04Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159647616", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/573", + "id": 1640304441, + "node_id": "I_kwDOAIy5dc5hxQ85", + "number": 573, + "title": "Cannot marshal Ticket to JSON", + "user": { + "login": "afm497", + "id": 586053, + "node_id": "MDQ6VXNlcjU4NjA1Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/586053?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/afm497", + "html_url": "https://github.com/afm497", + "followers_url": "https://api.github.com/users/afm497/followers", + "following_url": "https://api.github.com/users/afm497/following{/other_user}", + "gists_url": "https://api.github.com/users/afm497/gists{/gist_id}", + "starred_url": "https://api.github.com/users/afm497/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/afm497/subscriptions", + "organizations_url": "https://api.github.com/users/afm497/orgs", + "repos_url": "https://api.github.com/users/afm497/repos", + "events_url": "https://api.github.com/users/afm497/events{/privacy}", + "received_events_url": "https://api.github.com/users/afm497/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-25T01:29:27Z", + "updated_at": "2023-04-03T09:49:20Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nCannot, at least using both GSON and Jackson, marshal a Ticket to JSON. Multiple fields named **priority**. One in the Ticket itself, another in it's superclass, Request. The **priority** in Ticket is private, in Request it's protected. \r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Using the API, grab a Ticket object.\r\n2. Try to marshal to JSON using either GSON or Jackson. Though it probably would apply to others, only have used those.\r\n4. See IllegalArgumentException referencing multiple fields named \"**priority**\".\r\n\r\n**Expected behavior**\r\nAbility to marshal Ticket object to JSON for proper transmission.\r\n\r\n**Additional context**\r\nNot sure anymore is needed, but happy provide anything additional. \r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494015471", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/573#issuecomment-1494015471", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/573", + "id": 1494015471, + "node_id": "IC_kwDOAIy5dc5ZDN3v", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-03T09:49:20Z", + "updated_at": "2023-04-03T09:49:20Z", + "author_association": "COLLABORATOR", + "body": "@afm497 while the shadowed field is indeed less than ideal, I'm unsure why it wouldn't work. Following code is working at producing a json:\r\n\r\n```\r\n public static void main(String[] args) throws IOException {\r\n var ticket = new Ticket();\r\n ticket.setPriority(Priority.HIGH);\r\n var mapper = new ObjectMapper();\r\n mapper.writeValue(System.out, ticket);\r\n }\r\n```\r\n\r\nPlease provide a fully self contained reproducer.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494015471/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-03T09:49:21Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "28159358037", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/574", + "id": 1642589356, + "node_id": "I_kwDOAIy5dc5h5-ys", + "number": 574, + "title": "The total numbers doesn't match for articles", + "user": { + "login": "RobertoPegoraro", + "id": 10342271, + "node_id": "MDQ6VXNlcjEwMzQyMjcx", + "avatar_url": "https://avatars.githubusercontent.com/u/10342271?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RobertoPegoraro", + "html_url": "https://github.com/RobertoPegoraro", + "followers_url": "https://api.github.com/users/RobertoPegoraro/followers", + "following_url": "https://api.github.com/users/RobertoPegoraro/following{/other_user}", + "gists_url": "https://api.github.com/users/RobertoPegoraro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RobertoPegoraro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RobertoPegoraro/subscriptions", + "organizations_url": "https://api.github.com/users/RobertoPegoraro/orgs", + "repos_url": "https://api.github.com/users/RobertoPegoraro/repos", + "events_url": "https://api.github.com/users/RobertoPegoraro/events{/privacy}", + "received_events_url": "https://api.github.com/users/RobertoPegoraro/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2023-03-27T18:19:29Z", + "updated_at": "2023-04-03T09:37:58Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nWhen I perform the request zd.getArticles(\"ja\") it returns 207 articles, but when I request using postman (Using the same credentials) in API https://myOrganization.zendesk.com/api/v2/help_center/ja/articles it returns 186 articles only.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Request the articles from some locale in postman\r\n2. Request the same articles for the same locale using the SDK\r\n\r\n**Expected behavior**\r\nShould be retrieved the exaclty number of articles\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: Mac OS Ventura 13.2.1\r\n - Postman Version 9.31.0\r\n - ZenDesk SDK Version 0.21.0\r\n - Java Version 11\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494000087", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/574#issuecomment-1494000087", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/574", + "id": 1494000087, + "node_id": "IC_kwDOAIy5dc5ZDKHX", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-03T09:37:58Z", + "updated_at": "2023-04-03T09:37:58Z", + "author_association": "COLLABORATOR", + "body": "@RobertoPegoraro unsure why you observe such a different, it looks like the method you are using is calling exactly the same endpoint:\r\n\r\nhttps://github.com/cloudbees-oss/zendesk-java-client/blob/master/src/main/java/org/zendesk/client/v2/Zendesk.java#L2237-L2240\r\n\r\nOnly thing I can think of is that in the case of postman you do not properly handle the pagination.\r\n\r\n\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1494000087/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-03T09:37:58Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836151473", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/561", + "id": 1619684531, + "node_id": "I_kwDOAIy5dc5gimyz", + "number": 561, + "title": "Add support for bulk delete users", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-10T22:12:18Z", + "updated_at": "2023-03-20T09:37:27Z", + "closed_at": "2023-03-20T09:37:27Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Is your feature request related to a problem? Please describe.**\r\nWe have a need to delete thousands of users efficiently.\r\n\r\n**Describe the solution you'd like**\r\nAdd support for the [Bulk Delete Users](https://developer.zendesk.com/api-reference/ticketing/users/users/#bulk-delete-users) endpoint\r\n\r\n**Describe alternatives you've considered**\r\nIndividual deleteUser() user calls are slow and will get rate limited fairly quickly.\r\n\r\n**Additional context**\r\nWe attempted to add a bulk delete by external_id, as well as a by id version, but the returned JSON JobStatus.JobResults contains a string id that isn't compatible with the current client JobResults id field which assumes ids will always be Longs.\r\n\r\nPR to be submitted\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/561/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-20T09:37:28Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836147761", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/563", + "id": 1622237684, + "node_id": "I_kwDOAIy5dc5gsWH0", + "number": 563, + "title": "Update links in README.md", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-13T20:50:00Z", + "updated_at": "2023-03-20T09:37:18Z", + "closed_at": "2023-03-20T09:37:18Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nThe links in the README.md point to no longer available Zendesk documentation. Update links to current docs.\r\n\r\n**Additional context**\r\nThe README links are labeled to show the status of implementing all the web endpoints. The list does not reflect all the currently available endpoints and may contain some that are no longer available.\r\n\r\nI did not see current documentation for these items at zedesk.com (neither were checked as implemented):\r\n* [Restrictions and Responsibilities](http://developer.zendesk.com/documentation/rest_api/restrictions.html)\r\n* [Autocompletion](http://developer.zendesk.com/documentation/rest_api/autocomplete.html)\r\n\r\nDoes Forums still exist?\r\n* [Forums](http://developer.zendesk.com/documentation/rest_api/forums.html) ✓\r\n* [Forum Subscriptions](http://developer.zendesk.com/documentation/rest_api/forum_subscriptions.html)\r\n* [Categories](http://developer.zendesk.com/documentation/rest_api/categories.html)\r\n\r\nThis link was not removed in the PR but might be something to consider removing:\r\n* [Users list](https://groups.google.com/forum/#!forum/zendesk-java-client-users)\r\n\r\n\r\nPR to be submitted updating the existing links.\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/563/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-20T09:37:19Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836144445", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/555", + "id": 1614209338, + "node_id": "I_kwDOAIy5dc5gNuE6", + "number": 555, + "title": "Switch to cursor based pagination for Users", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2023-03-07T21:06:18Z", + "updated_at": "2023-03-20T09:37:10Z", + "closed_at": "2023-03-20T09:37:10Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Is your feature request related to a problem? Please describe.**\r\nZendesk is encouraging usage of the newer cursor based pagination especially for large result sets. We recently ran into issues with the older offset based pagination with frequent changes to our user set. The offset based pagination bases the paging off of a cached total count of users. In our case that count was being cached for 24 hours which prevent seeing additional new pages added to the user collection. A similar problem exists if a large number of users are deleted, the paging will continue to instruct you to page through empty pages until the paging matches the cached user count.\r\n\r\n**Describe the solution you'd like**\r\nOffset pagination is the default and cursor based pagination can be enabled by adding a `?page[size]=100` parameter to the request. The returned paging information is similar but located in a different JSON object. Support for both offset and cursor based pagination can be added by looking for the cursor based pagination first and then falling through to the existing offset based pagination.\r\n\r\nCursor based pagination can then be incrementally added to specific calls in this library as needed.\r\n\r\n**Describe alternatives you've considered**\r\nZendesk was contacted about documenting or fixing the page count that is cached for ~24 hours and they recommended switching to cursor based pagination.\r\n\r\nAlternatively, the paging navigation links could be ignored and paging offsets continue, even if a next link is null, until an empty page is fetched. In the case of the cached count affecting offset paging, the non-navigable pages do exist even though they never appear in the paging navigation.\r\n\r\nPR to be submitted with a change to just the getUsers() endpoint, other endpoints could benefit from this change but are not covered by the PR\r\n\r\n**Additional Reference**\r\n\r\nhttps://developer.zendesk.com/api-reference/introduction/pagination/\r\n\r\nhttps://developer.zendesk.com/documentation/api-basics/pagination/paginating-through-lists-using-cursor-pagination/\r\n\r\nCursor pagination includes a links and meta section in the response with an opaque cursor value that is be included to fetch the next page.\r\n\r\n```\r\n\"meta\": {\r\n \"has_more\": true,\r\n \"after_cursor\": \"xxx\",\r\n \"before_cursor\": \"yyy\"\r\n},\r\n\"links\": {\r\n \"next\": \"https://example.zendesk.com/api/v2/tickets.json?page[size]=100&page[after]=xxx\",\r\n \"prev\": \"https://example.zendesk.com/api/v2/tickets.json?page[size]=100&page[before]=yyy\"\r\n}\r\n```\r\n\r\n\r\nhttps://developer.zendesk.com/documentation/api-basics/pagination/paginating-through-lists-using-offset-pagination/\r\n\r\nOffset pagination includes a next_page link in the top level of the JSON response with a integer page value that returns values that start at an offset multiple from the beginning of the collection.\r\n\r\n```\r\n\"tickets\": [ ... ],\r\n\"next_page\": \"https://example.zendesk.com/api/v2/tickets.json?page=2\",\r\n```\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-20T09:37:11Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836136033", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/566", + "id": 1623731952, + "node_id": "I_kwDOAIy5dc5gyC7w", + "number": 566, + "title": "Additional Organization methods - bulk delete and createOrUpdate", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-14T15:34:34Z", + "updated_at": "2023-03-20T09:36:49Z", + "closed_at": "2023-03-20T09:36:49Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Is your feature request related to a problem? Please describe.**\r\nAdd additional organization methods for deleting many organizations in bulk and the createOrUpdate method for organizations.\r\n\r\nPR request with changes to be submitted (thanks for all you do, this is the last PR from us for now)", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/566/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-20T09:36:50Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836107572", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567", + "id": 1623733186, + "node_id": "PR_kwDOAIy5dc5MAxHs", + "number": 567, + "title": "Add delete many, and create or update support for organizations", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-14T15:35:06Z", + "updated_at": "2023-03-20T09:35:40Z", + "closed_at": "2023-03-20T09:34:04Z", + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.patch", + "merged_at": "2023-03-20T09:34:04Z" + }, + "body": "PR for issue #566 ", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1475898910", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567#issuecomment-1475898910", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567", + "id": 1475898910, + "node_id": "IC_kwDOAIy5dc5X-G4e", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-20T09:35:40Z", + "updated_at": "2023-03-20T09:35:40Z", + "author_association": "COLLABORATOR", + "body": "closes #566 ", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1475898910/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-20T09:35:41Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836096497", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.slf4j-slf4j-simple-2.0.7", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-20T09:35:13Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836096228", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13002553734, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "before": "eb9c84ddadb642fde02e8dbdb923caac89840c0a", + "commits": [ + { + "sha": "624488975ecff819086456c013aed2d98e3f9938", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump slf4j-simple from 2.0.6 to 2.0.7\n\nBumps [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.6 to 2.0.7.\n- [Release notes](https://github.com/qos-ch/slf4j/releases)\n- [Commits](https://github.com/qos-ch/slf4j/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-simple\n dependency-type: direct:development\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/624488975ecff819086456c013aed2d98e3f9938" + }, + { + "sha": "8695a63d8645fb8a17e6949d75e3b26151767bd0", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #570 from cloudbees-oss/dependabot/maven/org.slf4j-slf4j-simple-2.0.7", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/8695a63d8645fb8a17e6949d75e3b26151767bd0" + } + ] + }, + "public": true, + "created_at": "2023-03-20T09:35:13Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836093517", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348122967, + "node_id": "PRR_kwDOAIy5dc5QWrlX", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "624488975ecff819086456c013aed2d98e3f9938", + "submitted_at": "2023-03-20T09:35:05Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570#pullrequestreview-1348122967", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570#pullrequestreview-1348122967" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570", + "id": 1280710890, + "node_id": "PR_kwDOAIy5dc5MVhjq", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/570", + "number": 570, + "state": "open", + "locked": false, + "title": "Bump slf4j-simple from 2.0.6 to 2.0.7", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.6 to 2.0.7.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-simple&package-manager=maven&previous-version=2.0.6&new-version=2.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-17T20:08:13Z", + "updated_at": "2023-03-20T09:35:05Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "612612ebab21f23834c9eba763520c882d9c0fa1", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/570/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/624488975ecff819086456c013aed2d98e3f9938", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-simple-2.0.7", + "ref": "dependabot/maven/org.slf4j-slf4j-simple-2.0.7", + "sha": "624488975ecff819086456c013aed2d98e3f9938", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:57Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:57Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/570" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/570" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/570/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/570/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/624488975ecff819086456c013aed2d98e3f9938" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:35:06Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836090355", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-20T09:34:58Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836090116", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13002550752, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "eb9c84ddadb642fde02e8dbdb923caac89840c0a", + "before": "e04a717d448559f104e43efb33b08faa7f53f83c", + "commits": [ + { + "sha": "44620286aa255c5f24ec71f8986fcec636bbc4a5", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump slf4j-api from 2.0.6 to 2.0.7\n\nBumps [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.6 to 2.0.7.\n- [Release notes](https://github.com/qos-ch/slf4j/releases)\n- [Commits](https://github.com/qos-ch/slf4j/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-api\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/44620286aa255c5f24ec71f8986fcec636bbc4a5" + }, + { + "sha": "eb9c84ddadb642fde02e8dbdb923caac89840c0a", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #569 from cloudbees-oss/dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/eb9c84ddadb642fde02e8dbdb923caac89840c0a" + } + ] + }, + "public": true, + "created_at": "2023-03-20T09:34:58Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836090010", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 569, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569", + "id": 1280710842, + "node_id": "PR_kwDOAIy5dc5MVhi6", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569", + "number": 569, + "state": "closed", + "locked": false, + "title": "Bump slf4j-api from 2.0.6 to 2.0.7", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.6 to 2.0.7.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-api&package-manager=maven&previous-version=2.0.6&new-version=2.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-17T20:08:10Z", + "updated_at": "2023-03-20T09:34:56Z", + "closed_at": "2023-03-20T09:34:56Z", + "merged_at": "2023-03-20T09:34:56Z", + "merge_commit_sha": "eb9c84ddadb642fde02e8dbdb923caac89840c0a", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/44620286aa255c5f24ec71f8986fcec636bbc4a5", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "sha": "44620286aa255c5f24ec71f8986fcec636bbc4a5", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:56Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:56Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/44620286aa255c5f24ec71f8986fcec636bbc4a5" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-20T09:34:57Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836088030", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348122557, + "node_id": "PRR_kwDOAIy5dc5QWre9", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "44620286aa255c5f24ec71f8986fcec636bbc4a5", + "submitted_at": "2023-03-20T09:34:52Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569#pullrequestreview-1348122557", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569#pullrequestreview-1348122557" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569", + "id": 1280710842, + "node_id": "PR_kwDOAIy5dc5MVhi6", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569", + "number": 569, + "state": "open", + "locked": false, + "title": "Bump slf4j-api from 2.0.6 to 2.0.7", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.6 to 2.0.7.\n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-api&package-manager=maven&previous-version=2.0.6&new-version=2.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-17T20:08:10Z", + "updated_at": "2023-03-20T09:34:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "4d963769792d05f8fe99709161d9f56f661cf6a0", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/44620286aa255c5f24ec71f8986fcec636bbc4a5", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.7", + "sha": "44620286aa255c5f24ec71f8986fcec636bbc4a5", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:43Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:43Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/569" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/569/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/569/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/44620286aa255c5f24ec71f8986fcec636bbc4a5" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:34:52Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836084814", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-20T09:34:44Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836084654", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13002548156, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "e04a717d448559f104e43efb33b08faa7f53f83c", + "before": "41281aaa189dbf29acdde4ba6bee748cc34d0c1b", + "commits": [ + { + "sha": "c6642f93c3616d04ced03a53a4aa26f690bd2462", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump netty-bom from 4.1.89.Final to 4.1.90.Final\n\nBumps [netty-bom](https://github.com/netty/netty) from 4.1.89.Final to 4.1.90.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.1.89.Final...netty-4.1.90.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-bom\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/c6642f93c3616d04ced03a53a4aa26f690bd2462" + }, + { + "sha": "e04a717d448559f104e43efb33b08faa7f53f83c", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #568 from cloudbees-oss/dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/e04a717d448559f104e43efb33b08faa7f53f83c" + } + ] + }, + "public": true, + "created_at": "2023-03-20T09:34:44Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-5.json new file mode 100644 index 0000000000..207698728f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-5.json @@ -0,0 +1,9620 @@ +[ + { + "id": "27836084345", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 568, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568", + "id": 1275761605, + "node_id": "PR_kwDOAIy5dc5MCpPF", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568", + "number": 568, + "state": "closed", + "locked": false, + "title": "Bump netty-bom from 4.1.89.Final to 4.1.90.Final", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [netty-bom](https://github.com/netty/netty) from 4.1.89.Final to 4.1.90.Final.\n
    \nCommits\n
      \n
    • 367d997 [maven-release-plugin] prepare release netty-4.1.90.Final
    • \n
    • 0e8af54 Chunked HTTP length decoding should account for whitespaces/ctrl chars (Fixes...
    • \n
    • ab5c411 Handle NullPointerException thrown from NetworkInterface.getNetworkInterfaces...
    • \n
    • ebfc79c WebSocketClientProtocolHandler: add option to disable UTF8 validation of text...
    • \n
    • 8fac718 Don't reset BCSSLParameters when setting application protocols (#13262)
    • \n
    • c353f4f Faster Recycler's claim/release (Fixes #13153) (#13220)
    • \n
    • 84cf7d6 Native image: add support for unix domain sockets (#13242)
    • \n
    • 99204e9 Skip revapi checks for testsuite modules (#13258)
    • \n
    • 971aa8a Use MacOS SDK 10.9 to prevent apple notarization failures (#13253)
    • \n
    • 5d1f996 Increase errno cache and guard against IOOBE (#13254)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-bom&package-manager=maven&previous-version=4.1.89.Final&new-version=4.1.90.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-14T20:56:48Z", + "updated_at": "2023-03-20T09:34:42Z", + "closed_at": "2023-03-20T09:34:42Z", + "merged_at": "2023-03-20T09:34:42Z", + "merge_commit_sha": "e04a717d448559f104e43efb33b08faa7f53f83c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c6642f93c3616d04ced03a53a4aa26f690bd2462", + "head": { + "label": "cloudbees-oss:dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "ref": "dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "sha": "c6642f93c3616d04ced03a53a4aa26f690bd2462", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:41Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:41Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c6642f93c3616d04ced03a53a4aa26f690bd2462" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-20T09:34:43Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836082294", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348122188, + "node_id": "PRR_kwDOAIy5dc5QWrZM", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "c6642f93c3616d04ced03a53a4aa26f690bd2462", + "submitted_at": "2023-03-20T09:34:37Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568#pullrequestreview-1348122188", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568#pullrequestreview-1348122188" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568", + "id": 1275761605, + "node_id": "PR_kwDOAIy5dc5MCpPF", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568", + "number": 568, + "state": "open", + "locked": false, + "title": "Bump netty-bom from 4.1.89.Final to 4.1.90.Final", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [netty-bom](https://github.com/netty/netty) from 4.1.89.Final to 4.1.90.Final.\n
    \nCommits\n
      \n
    • 367d997 [maven-release-plugin] prepare release netty-4.1.90.Final
    • \n
    • 0e8af54 Chunked HTTP length decoding should account for whitespaces/ctrl chars (Fixes...
    • \n
    • ab5c411 Handle NullPointerException thrown from NetworkInterface.getNetworkInterfaces...
    • \n
    • ebfc79c WebSocketClientProtocolHandler: add option to disable UTF8 validation of text...
    • \n
    • 8fac718 Don't reset BCSSLParameters when setting application protocols (#13262)
    • \n
    • c353f4f Faster Recycler's claim/release (Fixes #13153) (#13220)
    • \n
    • 84cf7d6 Native image: add support for unix domain sockets (#13242)
    • \n
    • 99204e9 Skip revapi checks for testsuite modules (#13258)
    • \n
    • 971aa8a Use MacOS SDK 10.9 to prevent apple notarization failures (#13253)
    • \n
    • 5d1f996 Increase errno cache and guard against IOOBE (#13254)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-bom&package-manager=maven&previous-version=4.1.89.Final&new-version=4.1.90.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-14T20:56:48Z", + "updated_at": "2023-03-20T09:34:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "0114df446ff9946377fdd3400c880885accd543f", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c6642f93c3616d04ced03a53a4aa26f690bd2462", + "head": { + "label": "cloudbees-oss:dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "ref": "dependabot/maven/io.netty-netty-bom-4.1.90.Final", + "sha": "c6642f93c3616d04ced03a53a4aa26f690bd2462", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:04Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:04Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/568" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/568/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/568/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/c6642f93c3616d04ced03a53a4aa26f690bd2462" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:34:38Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836069950", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13002541191, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "41281aaa189dbf29acdde4ba6bee748cc34d0c1b", + "before": "6d89fa20b135813216838ef5ddd316d0e667c8f8", + "commits": [ + { + "sha": "6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "author": { + "email": "colby@realgo.com", + "name": "Colby Ackerfield" + }, + "message": "Add delete many, and create or update support for organziations", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/6f5bcf814b5718e34f2fdb8c08bf68d720906646" + }, + { + "sha": "41281aaa189dbf29acdde4ba6bee748cc34d0c1b", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #567 from colbya/CreateOrUpdateDeleteOrg", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/41281aaa189dbf29acdde4ba6bee748cc34d0c1b" + } + ] + }, + "public": true, + "created_at": "2023-03-20T09:34:06Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836069762", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 567, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567", + "id": 1275269612, + "node_id": "PR_kwDOAIy5dc5MAxHs", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567", + "number": 567, + "state": "closed", + "locked": false, + "title": "Add delete many, and create or update support for organizations", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for issue #566 ", + "created_at": "2023-03-14T15:35:06Z", + "updated_at": "2023-03-20T09:34:05Z", + "closed_at": "2023-03-20T09:34:04Z", + "merged_at": "2023-03-20T09:34:04Z", + "merge_commit_sha": "41281aaa189dbf29acdde4ba6bee748cc34d0c1b", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "head": { + "label": "colbya:CreateOrUpdateDeleteOrg", + "ref": "CreateOrUpdateDeleteOrg", + "sha": "6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:34:04Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/6f5bcf814b5718e34f2fdb8c08bf68d720906646" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 70, + "deletions": 0, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-03-20T09:34:06Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27836067421", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348121132, + "node_id": "PRR_kwDOAIy5dc5QWrIs", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm", + "commit_id": "6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "submitted_at": "2023-03-20T09:34:00Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567#pullrequestreview-1348121132", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567#pullrequestreview-1348121132" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567", + "id": 1275269612, + "node_id": "PR_kwDOAIy5dc5MAxHs", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567", + "number": 567, + "state": "open", + "locked": false, + "title": "Add delete many, and create or update support for organizations", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for issue #566 ", + "created_at": "2023-03-14T15:35:06Z", + "updated_at": "2023-03-20T09:34:00Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "afa876c021132087c02c90d98b97721c6cc8ef6a", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "head": { + "label": "colbya:CreateOrUpdateDeleteOrg", + "ref": "CreateOrUpdateDeleteOrg", + "sha": "6f5bcf814b5718e34f2fdb8c08bf68d720906646", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:30:37Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 10, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/567" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/567/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/567/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/6f5bcf814b5718e34f2fdb8c08bf68d720906646" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:34:00Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27835985761", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 565, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565", + "id": 1275223550, + "node_id": "PR_kwDOAIy5dc5MAl3-", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565", + "number": 565, + "state": "closed", + "locked": false, + "title": "Users by role cursor pagination", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "Added cursor pagination to getUserByRole and added a basic unit test for the method. I avoided adding admin users for the unit test. I didn't think that would be a good idea or allowed in the test environment.", + "created_at": "2023-03-14T15:07:43Z", + "updated_at": "2023-03-20T09:30:38Z", + "closed_at": "2023-03-20T09:30:38Z", + "merged_at": "2023-03-20T09:30:38Z", + "merge_commit_sha": "6d89fa20b135813216838ef5ddd316d0e667c8f8", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/382104b4d79d74db39d23a74e4e53c89e1a709d3", + "head": { + "label": "colbya:UsersByRoleCursorPagination", + "ref": "UsersByRoleCursorPagination", + "sha": "382104b4d79d74db39d23a74e4e53c89e1a709d3", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:30:37Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 10, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/382104b4d79d74db39d23a74e4e53c89e1a709d3" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 2, + "additions": 28, + "deletions": 3, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-03-20T09:30:39Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27835983235", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348115235, + "node_id": "PRR_kwDOAIy5dc5QWpsj", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm!", + "commit_id": "382104b4d79d74db39d23a74e4e53c89e1a709d3", + "submitted_at": "2023-03-20T09:30:32Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565#pullrequestreview-1348115235", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565#pullrequestreview-1348115235" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565", + "id": 1275223550, + "node_id": "PR_kwDOAIy5dc5MAl3-", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565", + "number": 565, + "state": "open", + "locked": false, + "title": "Users by role cursor pagination", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "Added cursor pagination to getUserByRole and added a basic unit test for the method. I avoided adding admin users for the unit test. I didn't think that would be a good idea or allowed in the test environment.", + "created_at": "2023-03-14T15:07:43Z", + "updated_at": "2023-03-20T09:30:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "39d438e5e894b0c7af78210bad43222ca73eea1f", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/382104b4d79d74db39d23a74e4e53c89e1a709d3", + "head": { + "label": "colbya:UsersByRoleCursorPagination", + "ref": "UsersByRoleCursorPagination", + "sha": "382104b4d79d74db39d23a74e4e53c89e1a709d3", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:28:40Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 11, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/565" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/565/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/565/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/382104b4d79d74db39d23a74e4e53c89e1a709d3" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:30:33Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27835936946", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 13002478200, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "b260445f5ce76df34fc5ac5166bae297cf6e1331", + "before": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "commits": [ + { + "sha": "261a1fe355f5e00ce73601cee14a0fd20b47d428", + "author": { + "email": "colby@realgo.com", + "name": "Colby Ackerfield" + }, + "message": "Update links", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/261a1fe355f5e00ce73601cee14a0fd20b47d428" + }, + { + "sha": "b260445f5ce76df34fc5ac5166bae297cf6e1331", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #564 from colbya/updateReadme", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/b260445f5ce76df34fc5ac5166bae297cf6e1331" + } + ] + }, + "public": true, + "created_at": "2023-03-20T09:28:42Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27835936727", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 564, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564", + "id": 1273948235, + "node_id": "PR_kwDOAIy5dc5L7uhL", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564", + "number": 564, + "state": "closed", + "locked": false, + "title": "Update README.md links", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for Issue #563 ", + "created_at": "2023-03-13T20:51:24Z", + "updated_at": "2023-03-20T09:28:41Z", + "closed_at": "2023-03-20T09:28:41Z", + "merged_at": "2023-03-20T09:28:41Z", + "merge_commit_sha": "b260445f5ce76df34fc5ac5166bae297cf6e1331", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/261a1fe355f5e00ce73601cee14a0fd20b47d428", + "head": { + "label": "colbya:updateReadme", + "ref": "updateReadme", + "sha": "261a1fe355f5e00ce73601cee14a0fd20b47d428", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-20T09:28:41Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 11, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/261a1fe355f5e00ce73601cee14a0fd20b47d428" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 37, + "deletions": 39, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-20T09:28:42Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27835934637", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1348111923, + "node_id": "PRR_kwDOAIy5dc5QWo4z", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks!", + "commit_id": "261a1fe355f5e00ce73601cee14a0fd20b47d428", + "submitted_at": "2023-03-20T09:28:36Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564#pullrequestreview-1348111923", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564#pullrequestreview-1348111923" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564", + "id": 1273948235, + "node_id": "PR_kwDOAIy5dc5L7uhL", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564", + "number": 564, + "state": "open", + "locked": false, + "title": "Update README.md links", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for Issue #563 ", + "created_at": "2023-03-13T20:51:24Z", + "updated_at": "2023-03-20T09:28:36Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8f43e04ab65062e36818a947e9b89c4aee23d625", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/261a1fe355f5e00ce73601cee14a0fd20b47d428", + "head": { + "label": "colbya:updateReadme", + "ref": "updateReadme", + "sha": "261a1fe355f5e00ce73601cee14a0fd20b47d428", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-14T15:36:45Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1303, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-17T20:08:14Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1279, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 12, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/564" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/564/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/564/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/261a1fe355f5e00ce73601cee14a0fd20b47d428" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-20T09:28:37Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672465937", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "id": 1615536590, + "node_id": "PR_kwDOAIy5dc5Llc-3", + "number": 560, + "title": "Support the 'Content Tags' resource in the Zendesk API - resolves #559", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-08T16:11:35Z", + "updated_at": "2023-03-13T08:59:54Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "draft": true, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/560", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560.patch", + "merged_at": null + }, + "body": "Content Tags can be added to posts and articles to loosely group them together.\r\nThe resource is a small object {id, name, createdDate, updatedDate}\r\nThe API supports CRUD & some searching\r\n\r\n**Additional context**\r\nAPI documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/content_tags/\r\nArticle about how they are used: https://support.zendesk.com/hc/en-us/articles/4848925672730", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1465746030", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/560#issuecomment-1465746030", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/560", + "id": 1465746030, + "node_id": "IC_kwDOAIy5dc5XXYJu", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-13T08:59:54Z", + "updated_at": "2023-03-13T08:59:54Z", + "author_association": "COLLABORATOR", + "body": "@andy-may-at I'll let you refresh and finish up on this branch, then I'll merge and cut a new release.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1465746030/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-13T08:59:54Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672454624", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/548", + "id": 1612056219, + "node_id": "I_kwDOAIy5dc5gFgab", + "number": 548, + "title": "Enable search for users by external_id where external_id is a String (not a long)", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598764, + "node_id": "MDU6TGFiZWwzNDU5ODc2NA==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/bug", + "name": "bug", + "color": "fc2929", + "default": true, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 6, + "created_at": "2023-03-06T19:13:43Z", + "updated_at": "2023-03-13T08:59:29Z", + "closed_at": "2023-03-13T08:59:29Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "The method to retrieve users by external ID: (`public List getUsersByExternalIds(long externalId, long... externalIds)`) expects the external IDs to be `long`s, but the underlying value is a `String` in the Zendesk API \r\n\r\nIn my use case, our external IDs are Strings, so we can't search for users by external ID using this method,..\r\n\r\nI propose to implementing an additional `public List getUsersByExternalIds(String externalId, String... externalIds)` method which \r\n\r\nI'll look to raise a PR for this shortly if the change would be welcomed", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-13T08:59:30Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672454186", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12919174563, + "size": 6, + "distinct_size": 6, + "ref": "refs/heads/master", + "head": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "before": "eeb1ba356adc32f3101e1e09f1bc5df55244c58a", + "commits": [ + { + "sha": "45328f11846054e908bbb3abdc87ca0883c7bb2f", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Implement getUsersByExternalIds(String, String...) - resolves #548\n\nUser external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/45328f11846054e908bbb3abdc87ca0883c7bb2f" + }, + { + "sha": "2b72f45afaf8484edb86041f0a6dc23cab5ff5b7", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Deprecate getUsersByExternalIds(long, long...)", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/2b72f45afaf8484edb86041f0a6dc23cab5ff5b7" + }, + { + "sha": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Don't rely on auto type conversion in UserTest", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/a18fcafb295b77e01976047ae6c22b9cf5739c15" + }, + { + "sha": "2404943ddd9c651073c28ac199a49ca3b2057248", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Remove wildcard import in UserTest", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/2404943ddd9c651073c28ac199a49ca3b2057248" + }, + { + "sha": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Remove blank line in UserTest", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/ab60adeaea5682e7aa1613256ba008e86ebda5d7" + }, + { + "sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #552 from andy-may-at/issue/548", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/539f7e7dbd3f05a141255ca847d8f063fa3c11bb" + } + ] + }, + "public": true, + "created_at": "2023-03-13T08:59:29Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672453866", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 552, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "closed", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-13T08:59:27Z", + "closed_at": "2023-03-13T08:59:27Z", + "merged_at": "2023-03-13T08:59:27Z", + "merge_commit_sha": "539f7e7dbd3f05a141255ca847d8f063fa3c11bb", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:07:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1184, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:59:27Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 5, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 4, + "maintainer_can_modify": false, + "commits": 5, + "additions": 109, + "deletions": 0, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2023-03-13T08:59:28Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672451224", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1336503256, + "node_id": "PRR_kwDOAIy5dc5PqWvY", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "submitted_at": "2023-03-13T08:59:22Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1336503256", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1336503256" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-13T08:59:22Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c13d8560343f07879b26189113bbc13042ede30b", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:07:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1184, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:56:01Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-13T08:59:23Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672361224", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12919133266, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "eeb1ba356adc32f3101e1e09f1bc5df55244c58a", + "before": "366da495cfe1d98b381d00b2498f8675e3ed0a77", + "commits": [ + { + "sha": "460c5b864bb05987adf11733ab2726d35dd0cbc4", + "author": { + "email": "colby@realgo.com", + "name": "Colby Ackerfield" + }, + "message": "Add bulk delete users by id", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/460c5b864bb05987adf11733ab2726d35dd0cbc4" + }, + { + "sha": "eeb1ba356adc32f3101e1e09f1bc5df55244c58a", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #562 from colbya/bulkDeleteUsers", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/eeb1ba356adc32f3101e1e09f1bc5df55244c58a" + } + ] + }, + "public": true, + "created_at": "2023-03-13T08:56:03Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672361069", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 562, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562", + "id": 1271786400, + "node_id": "PR_kwDOAIy5dc5Lzeug", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562", + "number": 562, + "state": "closed", + "locked": false, + "title": "Add bulk delete users by id", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for issue #561 ", + "created_at": "2023-03-10T22:15:23Z", + "updated_at": "2023-03-13T08:56:01Z", + "closed_at": "2023-03-13T08:56:01Z", + "merged_at": "2023-03-13T08:56:01Z", + "merge_commit_sha": "eeb1ba356adc32f3101e1e09f1bc5df55244c58a", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/460c5b864bb05987adf11733ab2726d35dd0cbc4", + "head": { + "label": "colbya:bulkDeleteUsers", + "ref": "bulkDeleteUsers", + "sha": "460c5b864bb05987adf11733ab2726d35dd0cbc4", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-10T22:00:46Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1208, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:56:01Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/460c5b864bb05987adf11733ab2726d35dd0cbc4" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 24, + "deletions": 0, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-03-13T08:56:02Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672358993", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1336497417, + "node_id": "PRR_kwDOAIy5dc5PqVUJ", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm!", + "commit_id": "460c5b864bb05987adf11733ab2726d35dd0cbc4", + "submitted_at": "2023-03-13T08:55:56Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562#pullrequestreview-1336497417", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562#pullrequestreview-1336497417" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562", + "id": 1271786400, + "node_id": "PR_kwDOAIy5dc5Lzeug", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562", + "number": 562, + "state": "open", + "locked": false, + "title": "Add bulk delete users by id", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "PR for issue #561 ", + "created_at": "2023-03-10T22:15:23Z", + "updated_at": "2023-03-13T08:55:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "69ee359d03630af899914211d9e543672d22776e", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/460c5b864bb05987adf11733ab2726d35dd0cbc4", + "head": { + "label": "colbya:bulkDeleteUsers", + "ref": "bulkDeleteUsers", + "sha": "460c5b864bb05987adf11733ab2726d35dd0cbc4", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-10T22:00:46Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1208, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:52:44Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/562" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/562/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/562/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/460c5b864bb05987adf11733ab2726d35dd0cbc4" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-13T08:55:57Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672300651", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1133609210", + "pull_request_review_id": 1336493324, + "id": 1133609210, + "node_id": "PRRC_kwDOAIy5dc5DkYD6", + "diff_hunk": "@@ -1,20 +1,19 @@\n package org.zendesk.client.v2;\n \n-import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;\n-import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson;\n-import static com.github.tomakehurst.wiremock.client.WireMock.ok;\n-import static com.github.tomakehurst.wiremock.client.WireMock.put;\n-import static com.github.tomakehurst.wiremock.client.WireMock.putRequestedFor;\n-import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;\n-import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;\n+import static com.github.tomakehurst.wiremock.client.WireMock.*;", + "path": "src/test/java/org/zendesk/client/v2/UserTest.java", + "position": null, + "original_position": 10, + "commit_id": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "original_commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Works for me :)\r\nThanks!", + "created_at": "2023-03-13T08:53:24Z", + "updated_at": "2023-03-13T08:53:25Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#discussion_r1133609210", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1133609210" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#discussion_r1133609210" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1133609210/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": null, + "original_line": 3, + "side": "RIGHT", + "in_reply_to_id": 1131051806 + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-13T08:53:25Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b829a17cd04fddbb5e8ed277e5dd2959e038d315", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:07:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1184, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:52:44Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-13T08:53:24Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672300597", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1336493324, + "node_id": "PRR_kwDOAIy5dc5PqUUM", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "submitted_at": "2023-03-13T08:53:25Z", + "state": "commented", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1336493324", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1336493324" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-13T08:53:25Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b829a17cd04fddbb5e8ed277e5dd2959e038d315", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "ab60adeaea5682e7aa1613256ba008e86ebda5d7", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:07:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1184, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:52:44Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/ab60adeaea5682e7aa1613256ba008e86ebda5d7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-13T08:53:25Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672286057", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/557", + "id": 1615353774, + "node_id": "I_kwDOAIy5dc5gSFeu", + "number": 557, + "title": "Support getting/setting of Help Center article's `content_tag_ids` field", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-08T14:17:36Z", + "updated_at": "2023-03-13T08:52:46Z", + "closed_at": "2023-03-13T08:52:46Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "Help Center articles have a (mutable & optional) 'content_tag_ids' field\r\nThe [documentation](https://developer.zendesk.com/api-reference/help_center/help-center-api/articles/) says that the field contains '_The list of content tags attached to the article_'\r\n\r\nThis field is not currently exposed in the Article model & so cannot be read/written\r\nFeature request is to add it to the model.\r\n\r\n\r\n**Additional context**\r\nN.B. a potential risk of adding a new field to the model seems to be that any existing code using the client that was doing a overwrite of an existing article (by calling `Zendesk.updateArticle(article)` (without having recently read the article in question from the API, or where the Article instance has been created by copying a known set of fields from another Article instance) would have been preserving any pre-existing content_tags_id value on the article.\r\nBut if we add the field to the model, then any code like this will now be updating the content_tags_id field to be empty\r\nThis edge-case change in behaviour seems worthwhile, but may be worth documenting in release notes.\r\n\r\n\r\nI'm building a PR for this issue & will submit it shortly\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/557/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-13T08:52:47Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672285574", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12919097503, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "366da495cfe1d98b381d00b2498f8675e3ed0a77", + "before": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "commits": [ + { + "sha": "e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "author": { + "email": "andy.may@autotrader.co.uk", + "name": "Andy May" + }, + "message": "Add support for Article.contentTagIds field - resolves #557", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/e3c895f9e03c21eb6a21e40601ebd7d49c6dd664" + }, + { + "sha": "366da495cfe1d98b381d00b2498f8675e3ed0a77", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #558 from andy-may-at/issue/557/expose_content_tag_ids_on_article", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/366da495cfe1d98b381d00b2498f8675e3ed0a77" + } + ] + }, + "public": true, + "created_at": "2023-03-13T08:52:46Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27672285224", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 558, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558", + "id": 1267999420, + "node_id": "PR_kwDOAIy5dc5LlCK8", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558", + "number": 558, + "state": "closed", + "locked": false, + "title": "Add support for `Article.content_tag_ids field` - resolves #557", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "N.B. a potential risk of adding a new field to the model seems to be that any existing code using the client that was doing a overwrite of an existing article (by calling Zendesk.updateArticle(article) (without having recently read the article in question from the API, or where the Article instance has been created by copying a known set of fields from another Article instance) would have been preserving any pre-existing content_tags_id value on the article.\r\nBut if we add the field to the model, then any code like this will now be updating the content_tags_id field to be empty\r\nThis edge-case change in behaviour seems worthwhile, but may be worth documenting in release notes.", + "created_at": "2023-03-08T14:55:20Z", + "updated_at": "2023-03-13T08:52:44Z", + "closed_at": "2023-03-13T08:52:44Z", + "merged_at": "2023-03-13T08:52:44Z", + "merge_commit_sha": "366da495cfe1d98b381d00b2498f8675e3ed0a77", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + }, + { + "id": 808470392, + "node_id": "MDU6TGFiZWw4MDg0NzAzOTI=", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/breaking", + "name": "breaking", + "color": "b60205", + "default": false, + "description": "Breaking change" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "head": { + "label": "andy-may-at:issue/557/expose_content_tag_ids_on_article", + "ref": "issue/557/expose_content_tag_ids_on_article", + "sha": "e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:07:21Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1184, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-13T08:52:44Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e3c895f9e03c21eb6a21e40601ebd7d49c6dd664" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 3, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 16, + "deletions": 0, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-03-13T08:52:45Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27637245413", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 93019434, + "name": "jenkinsci/date-parameter-plugin", + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12", + "repository_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin", + "labels_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12/comments", + "events_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12/events", + "html_url": "https://github.com/jenkinsci/date-parameter-plugin/issues/12", + "id": 1291191148, + "node_id": "I_kwDOBYtdKs5M9gNs", + "number": 12, + "title": "Please fix the stored XSS vulnerability", + "user": { + "login": "noodles101", + "id": 6965320, + "node_id": "MDQ6VXNlcjY5NjUzMjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/6965320?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/noodles101", + "html_url": "https://github.com/noodles101", + "followers_url": "https://api.github.com/users/noodles101/followers", + "following_url": "https://api.github.com/users/noodles101/following{/other_user}", + "gists_url": "https://api.github.com/users/noodles101/gists{/gist_id}", + "starred_url": "https://api.github.com/users/noodles101/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/noodles101/subscriptions", + "organizations_url": "https://api.github.com/users/noodles101/orgs", + "repos_url": "https://api.github.com/users/noodles101/repos", + "events_url": "https://api.github.com/users/noodles101/events{/privacy}", + "received_events_url": "https://api.github.com/users/noodles101/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 617321795, + "node_id": "MDU6TGFiZWw2MTczMjE3OTU=", + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/labels/bug", + "name": "bug", + "color": "ee0701", + "default": true, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2022-07-01T10:00:17Z", + "updated_at": "2023-03-10T15:18:46Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Jenkins and plugins versions report\r\n\r\n
    \r\n Environment\r\n\r\n \r\n ```text\r\nJenkins: 2.357\r\nOS: Windows 10 - 10.0\r\n---\r\nace-editor:1.1\r\nant:475.vf34069fef73c\r\nantisamy-markup-formatter:2.7\r\napache-httpcomponents-client-4-api:4.5.13-1.0\r\nauthentication-tokens:1.4\r\nauthorize-project:1.4.0\r\nbackup:1.6.1\r\nbootstrap4-api:4.6.0-5\r\nbootstrap5-api:5.1.3-7\r\nbouncycastle-api:2.26\r\nbranch-api:2.1046.v0ca_37783ecc5\r\nbuild-timeout:1.21\r\nbuilt-on-column:1.1\r\ncaffeine-api:2.9.3-65.v6a_47d0f4d1fe\r\nchecks-api:1.7.4\r\ncloudbees-folder:6.729.v2b_9d1a_74d673\r\ncommand-launcher:84.v4a_97f2027398\r\nconditional-buildstep:1.4.2\r\ncredentials:1129.vef26f5df883c\r\ncredentials-binding:523.vd859a_4b_122e6\r\ndashboard-view:2.432.va_712ce35862d\r\ndate-parameter:0.0.4\r\ndisplay-url-api:2.3.6\r\ndocker-commons:1.19\r\ndocker-workflow:1.29\r\ndurable-task:496.va67c6f9eefa7\r\necharts-api:5.3.3-1\r\nemail-ext:2.89\r\nemailext-template:1.4\r\nenvinject:2.866.v5c0403e3d4df\r\nenvinject-api:1.199.v3ce31253ed13\r\nexternal-monitor-job:191.v363d0d1efdf8\r\nextreme-notification:1.6\r\nfont-awesome-api:6.1.1-1\r\ngit:4.11.3\r\ngit-client:3.11.0\r\ngit-parameter:0.9.17\r\ngit-server:1.11\r\ngithub:1.34.4\r\ngithub-api:1.303-400.v35c2d8258028\r\ngithub-branch-source:1656.v77eddb_b_e95df\r\ngitlab-plugin:1.5.35\r\ngradle:1.39.2\r\nhandlebars:3.0.8\r\ninstance-identity:3.1\r\njackson2-api:2.13.3-285.vc03c0256d517\r\njavadoc:217.v905b_86277a_2a_\r\njavax-activation-api:1.2.0-3\r\njavax-mail-api:1.6.2-6\r\njaxb:2.3.6-1\r\njdk-tool:1.5\r\njersey2-api:2.36-2\r\njjwt-api:0.11.5-77.v646c772fddb_0\r\njnr-posix-api:3.1.7-3\r\njquery:1.12.4-1\r\njquery-detached:1.2.1\r\njquery3-api:3.6.0-4\r\njsch:0.1.55.2\r\njunit:1119.1121.vc43d0fc45561\r\nldap:2.10\r\nlocale:144.v1a_998824ddb_3\r\nlockable-resources:2.15\r\nmailer:414.vcc4c33714601\r\nmapdb-api:1.0.9.0\r\nmatrix-auth:2.6.11\r\nmatrix-project:772.v494f19991984\r\nmina-sshd-api-common:2.8.0-21.v493b_6b_db_22c6\r\nmina-sshd-api-core:2.8.0-21.v493b_6b_db_22c6\r\nmomentjs:1.1.1\r\nokhttp-api:4.9.3-105.vb96869f8ac3a\r\npam-auth:1.8\r\nparameterized-trigger:2.44\r\npipeline-build-step:2.18\r\npipeline-github-lib:38.v445716ea_edda_\r\npipeline-graph-analysis:195.v5812d95a_a_2f9\r\npipeline-groovy-lib:593.va_a_fc25d520e9\r\npipeline-input-step:449.v77f0e8b_845c4\r\npipeline-milestone-step:101.vd572fef9d926\r\npipeline-model-api:2.2097.v33db_b_de764b_e\r\npipeline-model-definition:2.2097.v33db_b_de764b_e\r\npipeline-model-extensions:2.2097.v33db_b_de764b_e\r\npipeline-rest-api:2.24\r\npipeline-stage-step:293.v200037eefcd5\r\npipeline-stage-tags-metadata:2.2097.v33db_b_de764b_e\r\npipeline-stage-view:2.24\r\nplain-credentials:1.8\r\nplugin-util-api:2.17.0\r\npopper-api:1.16.1-3\r\npopper2-api:2.11.5-2\r\nrebuild:1.34\r\nresource-disposer:0.19\r\nrun-condition:1.5\r\nscm-api:608.vfa_f971c5a_a_e9\r\nscript-security:1175.v4b_d517d6db_f0\r\nsnakeyaml-api:1.30.2-76.vc104f7ce9870\r\nssh-credentials:291.v8211e4f8efb_c\r\nssh-slaves:1.821.vd834f8a_c390e\r\nsshd:3.242.va_db_9da_b_26a_c3\r\nstructs:318.va_f3ccb_729b_71\r\nsubversion:2.15.5\r\nthinBackup:1.10\r\ntimestamper:1.18\r\ntoken-macro:293.v283932a_0a_b_49\r\ntrilead-api:1.57.v6e90e07157e1\r\nvariant:1.4\r\nwindows-slaves:1.8.1\r\nworkflow-aggregator:590.v6a_d052e5a_a_b_5\r\nworkflow-api:1165.v02c3db_a_6b_e36\r\nworkflow-basic-steps:948.v2c72a_091b_b_68\r\nworkflow-cps:2725.v7b_c717eb_12ce\r\nworkflow-durable-task-step:1155.v79567b_e0a_2de\r\nworkflow-job:1189.va_d37a_e9e4eda_\r\nworkflow-multibranch:716.vc692a_e52371b_\r\nworkflow-scm-step:400.v6b_89a_1317c9a_\r\nworkflow-step-api:625.vd896b_f445a_f8\r\nworkflow-support:820.vd1a_6cc65ef33\r\nws-cleanup:0.42\r\n ```\r\n
    \r\n\r\nPlease fix the stored XSS vulnerability.\r\n\r\n\r\n### What Operating System are you using (both controller, and any agents involved in the problem)?\r\n\r\nWindows\r\n\r\n### Reproduction steps\r\n\r\nPlease fix the stored XSS vulnerability.\r\n\r\n\r\n\r\n### Expected Results\r\n\r\nhttps://www.jenkins.io/security/advisory/2022-06-22/#SECURITY-2784\r\n\r\n### Actual Results\r\n\r\n![image](https://user-images.githubusercontent.com/6965320/176872180-58bdb4a7-ed1c-4923-ba2a-86ba1a0b61f5.png)\r\n\r\n### Anything else?\r\n\r\n_No response_\r\n\r\n/assign @leejaycoke @PierreBtz ", + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12/reactions", + "total_count": 4, + "+1": 3, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 1 + }, + "timeline_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/comments/1463954563", + "html_url": "https://github.com/jenkinsci/date-parameter-plugin/issues/12#issuecomment-1463954563", + "issue_url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/12", + "id": 1463954563, + "node_id": "IC_kwDOBYtdKs5XQiyD", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-10T15:18:45Z", + "updated_at": "2023-03-10T15:18:45Z", + "author_association": "CONTRIBUTOR", + "body": "@noodles101, I'll reiterate one more time I'm not maintaining this plugin. Please stop pinging me.", + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/date-parameter-plugin/issues/comments/1463954563/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-10T15:18:46Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27609486285", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332867000, + "node_id": "PRR_kwDOAIy5dc5Pce-4", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgtm, I'd like if possible to see the wildcard import removed.", + "commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "submitted_at": "2023-03-09T13:49:21Z", + "state": "dismissed", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-09T15:05:54Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "94c10814a74aa7d69ccb12a88962dccaffb56d75", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2404943ddd9c651073c28ac199a49ca3b2057248", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "2404943ddd9c651073c28ac199a49ca3b2057248", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T15:05:52Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T14:31:22Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/2404943ddd9c651073c28ac199a49ca3b2057248" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T15:05:55Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27608484646", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 556, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556", + "id": 1266955740, + "node_id": "PR_kwDOAIy5dc5LhDXc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556", + "number": 556, + "state": "closed", + "locked": false, + "title": "Cursor based pagination added for getUsers", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "Fix for #555, see issue for further details and discussion", + "created_at": "2023-03-07T21:11:16Z", + "updated_at": "2023-03-09T14:31:22Z", + "closed_at": "2023-03-09T14:31:22Z", + "merged_at": "2023-03-09T14:31:22Z", + "merge_commit_sha": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 2833363346, + "node_id": "MDU6TGFiZWwyODMzMzYzMzQ2", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/chore", + "name": "chore", + "color": "F542D8", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/eb9e56b78c3b890630109aa147640afb5a65df74", + "head": { + "label": "colbya:cursor-pagination-for-getUsers", + "ref": "cursor-pagination-for-getUsers", + "sha": "eb9e56b78c3b890630109aa147640afb5a65df74", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-07T21:57:14Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1203, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T14:31:22Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/eb9e56b78c3b890630109aa147640afb5a65df74" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 12, + "deletions": 2, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-09T14:31:23Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27608484975", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12884132033, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "before": "c3e1865995361ebccaae6e1b0a54e17e2aea377f", + "commits": [ + { + "sha": "eb9e56b78c3b890630109aa147640afb5a65df74", + "author": { + "email": "colby@realgo.com", + "name": "Colby Ackerfield" + }, + "message": "Cursor based pagination added for getUsers", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/eb9e56b78c3b890630109aa147640afb5a65df74" + }, + { + "sha": "ffb2e475f042f7f3f5c5d0bbc715632d66c70649", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #556 from colbya/cursor-pagination-for-getUsers", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/ffb2e475f042f7f3f5c5d0bbc715632d66c70649" + } + ] + }, + "public": true, + "created_at": "2023-03-09T14:31:24Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27608467967", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332976299, + "node_id": "PRR_kwDOAIy5dc5Pc5qr", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "> Would you prefer me to roll the two together into a single issue/PR or to keep them separate?\r\n\r\nOn one hand both changes are orthogonal so two PRs make sense, but on the other hand since your PR is the first using the content tag API, it also make sense grouping them. So I guess up to you, use the solution that requires the less work for you :)\r\n\r\n> This edge-case change in behaviour seems worthwhile, but may be worth documenting in release notes.\r\n\r\nAgreed, let's not over-engineer this, I'll mark this PR as breaking to remember about it in the release notes.", + "commit_id": "e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "submitted_at": "2023-03-09T14:30:48Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558#pullrequestreview-1332976299", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558#pullrequestreview-1332976299" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558", + "id": 1267999420, + "node_id": "PR_kwDOAIy5dc5LlCK8", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558", + "number": 558, + "state": "open", + "locked": false, + "title": "Add support for `Article.content_tag_ids field` - resolves #557", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "N.B. a potential risk of adding a new field to the model seems to be that any existing code using the client that was doing a overwrite of an existing article (by calling Zendesk.updateArticle(article) (without having recently read the article in question from the API, or where the Article instance has been created by copying a known set of fields from another Article instance) would have been preserving any pre-existing content_tags_id value on the article.\r\nBut if we add the field to the model, then any code like this will now be updating the content_tags_id field to be empty\r\nThis edge-case change in behaviour seems worthwhile, but may be worth documenting in release notes.", + "created_at": "2023-03-08T14:55:20Z", + "updated_at": "2023-03-09T14:30:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "724f3541cf45a41329ca1e3775ce895bfd063832", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "head": { + "label": "andy-may-at:issue/557/expose_content_tag_ids_on_article", + "ref": "issue/557/expose_content_tag_ids_on_article", + "sha": "e3c895f9e03c21eb6a21e40601ebd7d49c6dd664", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:09:29Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T13:39:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/558" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/558/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/558/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e3c895f9e03c21eb6a21e40601ebd7d49c6dd664" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T14:30:50Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607290330", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332867000, + "node_id": "PRR_kwDOAIy5dc5Pce-4", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgtm, I'd like if possible to see the wildcard import removed.", + "commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "submitted_at": "2023-03-09T13:49:21Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-09T13:49:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "714d5afc5f1ebfd187783f1734549b8d38784db3", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:09:29Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T13:39:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:49:22Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607290420", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332867000, + "node_id": "PRR_kwDOAIy5dc5Pce-4", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Lgtm, I'd like if possible to see the wildcard import removed.", + "commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "submitted_at": "2023-03-09T13:49:21Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#pullrequestreview-1332867000" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-09T13:49:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "714d5afc5f1ebfd187783f1734549b8d38784db3", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:09:29Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T13:39:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:49:22Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-6.json new file mode 100644 index 0000000000..74899dd8b9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-6.json @@ -0,0 +1,6418 @@ +[ + { + "id": "27607290560", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1131051806", + "pull_request_review_id": 1332867000, + "id": 1131051806, + "node_id": "PRRC_kwDOAIy5dc5Danse", + "diff_hunk": "@@ -1,20 +1,19 @@\n package org.zendesk.client.v2;\n \n-import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;\n-import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson;\n-import static com.github.tomakehurst.wiremock.client.WireMock.ok;\n-import static com.github.tomakehurst.wiremock.client.WireMock.put;\n-import static com.github.tomakehurst.wiremock.client.WireMock.putRequestedFor;\n-import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;\n-import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;\n+import static com.github.tomakehurst.wiremock.client.WireMock.*;", + "path": "src/test/java/org/zendesk/client/v2/UserTest.java", + "position": 10, + "original_position": 10, + "commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "original_commit_id": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Nit: I'd rather see the explicit import kept (we strongly discourage using wildcard imports even in tests, see https://github.com/cloudbees-oss/zendesk-java-client/blob/master/CONTRIBUTING.adoc#imports).\r\n\r\n(sorry I just noticed the project doesn't have a working editorconfig file to help setting up your IDE, I'll try to add it at some point).", + "created_at": "2023-03-09T13:44:53Z", + "updated_at": "2023-03-09T13:49:21Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#discussion_r1131051806", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1131051806" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552#discussion_r1131051806" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1131051806/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 3, + "original_line": 3, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552", + "id": 1266462568, + "node_id": "PR_kwDOAIy5dc5LfK9o", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552", + "number": 552, + "state": "open", + "locked": false, + "title": "Implement getUsersByExternalIds(String, String...) - resolves #548", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "body": "User external IDs are Strings in the Zendesk API, but the existing getUsersByExternalId implementation only allowed getting users by an externalId that was a long.", + "created_at": "2023-03-07T15:14:18Z", + "updated_at": "2023-03-09T13:49:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "714d5afc5f1ebfd187783f1734549b8d38784db3", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15", + "head": { + "label": "andy-may-at:issue/548", + "ref": "issue/548", + "sha": "a18fcafb295b77e01976047ae6c22b9cf5739c15", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 610732619, + "node_id": "R_kgDOJGcKSw", + "name": "zendesk-java-client", + "full_name": "andy-may-at/zendesk-java-client", + "private": false, + "owner": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/andy-may-at/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/andy-may-at/zendesk-java-client", + "forks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/andy-may-at/zendesk-java-client/deployments", + "created_at": "2023-03-07T11:21:54Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:09:29Z", + "git_url": "git://github.com/andy-may-at/zendesk-java-client.git", + "ssh_url": "git@github.com:andy-may-at/zendesk-java-client.git", + "clone_url": "https://github.com/andy-may-at/zendesk-java-client.git", + "svn_url": "https://github.com/andy-may-at/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1183, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T13:39:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/552" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/552/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/552/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a18fcafb295b77e01976047ae6c22b9cf5739c15" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:44:53Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607031442", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12883419992, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "c3e1865995361ebccaae6e1b0a54e17e2aea377f", + "before": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "commits": [ + { + "sha": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "author": { + "email": "colby@realgo.com", + "name": "Colby Ackerfield" + }, + "message": "Fix and enable createOrUpdateUser test", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba" + }, + { + "sha": "c3e1865995361ebccaae6e1b0a54e17e2aea377f", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #554 from colbya/createOrUpdateUser-test-fix", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/c3e1865995361ebccaae6e1b0a54e17e2aea377f" + } + ] + }, + "public": true, + "created_at": "2023-03-09T13:39:42Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607031387", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/553", + "id": 1614177298, + "node_id": "I_kwDOAIy5dc5gNmQS", + "number": 553, + "title": "Fix and explaination for failing createOrUpdateUser test", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-07T20:42:00Z", + "updated_at": "2023-03-09T13:39:41Z", + "closed_at": "2023-03-09T13:39:41Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Describe the bug**\r\nThe createOrUpdateUser test is failing after attempting to update a phone number field on a user. It appears that the Zendesk api has additional rules for updating identity fields that are exposed on the user resource (i.e. email and phone). These rules include not allowing a duplicate value for an email field and not replacing but adding phone numbers when updated.\r\n\r\n**To Reproduce**\r\nRun the createOrUpdateUser test. The user modified ends up with two phone numbers instead of having the single phone number updated. The user object returned only displays the first phone number set making it appear as if the updated did not work.\r\n\r\n**Expected behavior**\r\nThe field updated should be reflected on the object returned from the update api call. This expected behavior occurs when updating most fields. Recommended change is to update a non-identity and test for that change in the smoke test.\r\n\r\n**Additional context**\r\nThis behavior was discovered while attempting to synchronize a large set of users with Zendesk. There are unexpected (and undocumented) behaviors with the Zendesk User endpoint including the ability to create an end-user without an email or phone number but not being able to clear both email and phone after they have been set.\r\n\r\nPR to be submitted\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/553/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-09T13:39:42Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607030950", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 554, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554", + "id": 1266931544, + "node_id": "PR_kwDOAIy5dc5Lg9dY", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554", + "number": 554, + "state": "closed", + "locked": false, + "title": "Fix and enable createOrUpdateUser test", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "This fixes #553 and enables the createOrUpdateUser test switching the updated field from phone to details.", + "created_at": "2023-03-07T20:49:44Z", + "updated_at": "2023-03-09T13:39:40Z", + "closed_at": "2023-03-09T13:39:39Z", + "merged_at": "2023-03-09T13:39:39Z", + "merge_commit_sha": "c3e1865995361ebccaae6e1b0a54e17e2aea377f", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "head": { + "label": "colbya:createOrUpdateUser-test-fix", + "ref": "createOrUpdateUser-test-fix", + "sha": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-07T21:57:14Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1203, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-09T13:39:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 10, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 9, + "deletions": 8, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-09T13:39:41Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607028434", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332856758, + "node_id": "PRR_kwDOAIy5dc5Pcce2", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks for fixing this!", + "commit_id": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "submitted_at": "2023-03-09T13:39:34Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554#pullrequestreview-1332856758", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554#pullrequestreview-1332856758" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554", + "id": 1266931544, + "node_id": "PR_kwDOAIy5dc5Lg9dY", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554", + "number": 554, + "state": "open", + "locked": false, + "title": "Fix and enable createOrUpdateUser test", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "This fixes #553 and enables the createOrUpdateUser test switching the updated field from phone to details.", + "created_at": "2023-03-07T20:49:44Z", + "updated_at": "2023-03-09T13:39:34Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d7ef635ad3ed48e22f99f0bafb3f2d41c087c57a", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "head": { + "label": "colbya:createOrUpdateUser-test-fix", + "ref": "createOrUpdateUser-test-fix", + "sha": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-07T21:57:14Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1203, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:11:35Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 11, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:39:35Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607019978", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332856196, + "node_id": "PRR_kwDOAIy5dc5PccWE", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "submitted_at": "2023-03-09T13:39:14Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554#pullrequestreview-1332856196", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554#pullrequestreview-1332856196" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554", + "id": 1266931544, + "node_id": "PR_kwDOAIy5dc5Lg9dY", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554", + "number": 554, + "state": "open", + "locked": false, + "title": "Fix and enable createOrUpdateUser test", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "This fixes #553 and enables the createOrUpdateUser test switching the updated field from phone to details.", + "created_at": "2023-03-07T20:49:44Z", + "updated_at": "2023-03-09T13:39:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d7ef635ad3ed48e22f99f0bafb3f2d41c087c57a", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "head": { + "label": "colbya:createOrUpdateUser-test-fix", + "ref": "createOrUpdateUser-test-fix", + "sha": "540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-07T21:57:14Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1203, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:11:35Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 11, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/554" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/554/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/554/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/540d9cfb4e8f4caffb7e45f38ad0baa39b20fbba" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:39:15Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27607012267", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1332855644, + "node_id": "PRR_kwDOAIy5dc5PccNc", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Did some testing locally, it looks like it behaves properly.\r\nLgtm, thanks!", + "commit_id": "eb9e56b78c3b890630109aa147640afb5a65df74", + "submitted_at": "2023-03-09T13:38:56Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556#pullrequestreview-1332855644", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556#pullrequestreview-1332855644" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556", + "id": 1266955740, + "node_id": "PR_kwDOAIy5dc5LhDXc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556", + "number": 556, + "state": "open", + "locked": false, + "title": "Cursor based pagination added for getUsers", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "body": "Fix for #555, see issue for further details and discussion", + "created_at": "2023-03-07T21:11:16Z", + "updated_at": "2023-03-09T13:38:56Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "64cf71ad30b457b18a94b6a0738ade25a9454120", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/eb9e56b78c3b890630109aa147640afb5a65df74", + "head": { + "label": "colbya:cursor-pagination-for-getUsers", + "ref": "cursor-pagination-for-getUsers", + "sha": "eb9e56b78c3b890630109aa147640afb5a65df74", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 595426024, + "node_id": "R_kgDOI3166A", + "name": "zendesk-java-client", + "full_name": "colbya/zendesk-java-client", + "private": false, + "owner": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/colbya/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/colbya/zendesk-java-client", + "forks_url": "https://api.github.com/repos/colbya/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/colbya/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/colbya/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/colbya/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/colbya/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/colbya/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/colbya/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/colbya/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/colbya/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/colbya/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/colbya/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/colbya/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/colbya/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/colbya/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/colbya/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/colbya/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/colbya/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/colbya/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/colbya/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/colbya/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/colbya/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/colbya/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/colbya/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/colbya/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/colbya/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/colbya/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/colbya/zendesk-java-client/deployments", + "created_at": "2023-01-31T03:32:05Z", + "updated_at": "2023-03-07T15:30:46Z", + "pushed_at": "2023-03-07T21:57:14Z", + "git_url": "git://github.com/colbya/zendesk-java-client.git", + "ssh_url": "git@github.com:colbya/zendesk-java-client.git", + "clone_url": "https://github.com/colbya/zendesk-java-client.git", + "svn_url": "https://github.com/colbya/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1203, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-08T16:11:35Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1179, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 11, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/556" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/556/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/556/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/eb9e56b78c3b890630109aa147640afb5a65df74" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-09T13:38:57Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27601969679", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/555", + "id": 1614209338, + "node_id": "I_kwDOAIy5dc5gNuE6", + "number": 555, + "title": "Switch to cursor based pagination for Users", + "user": { + "login": "colbya", + "id": 1117349, + "node_id": "MDQ6VXNlcjExMTczNDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1117349?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/colbya", + "html_url": "https://github.com/colbya", + "followers_url": "https://api.github.com/users/colbya/followers", + "following_url": "https://api.github.com/users/colbya/following{/other_user}", + "gists_url": "https://api.github.com/users/colbya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colbya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colbya/subscriptions", + "organizations_url": "https://api.github.com/users/colbya/orgs", + "repos_url": "https://api.github.com/users/colbya/repos", + "events_url": "https://api.github.com/users/colbya/events{/privacy}", + "received_events_url": "https://api.github.com/users/colbya/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-07T21:06:18Z", + "updated_at": "2023-03-09T10:32:07Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "**Is your feature request related to a problem? Please describe.**\r\nZendesk is encouraging usage of the newer cursor based pagination especially for large result sets. We recently ran into issues with the older offset based pagination with frequent changes to our user set. The offset based pagination bases the paging off of a cached total count of users. In our case that count was being cached for 24 hours which prevent seeing additional new pages added to the user collection. A similar problem exists if a large number of users are deleted, the paging will continue to instruct you to page through empty pages until the paging matches the cached user count.\r\n\r\n**Describe the solution you'd like**\r\nOffset pagination is the default and cursor based pagination can be enabled by adding a `?page[size]=100` parameter to the request. The returned paging information is similar but located in a different JSON object. Support for both offset and cursor based pagination can be added by looking for the cursor based pagination first and then falling through to the existing offset based pagination.\r\n\r\nCursor based pagination can then be incrementally added to specific calls in this library as needed.\r\n\r\n**Describe alternatives you've considered**\r\nZendesk was contacted about documenting or fixing the page count that is cached for ~24 hours and they recommended switching to cursor based pagination.\r\n\r\nAlternatively, the paging navigation links could be ignored and paging offsets continue, even if a next link is null, until an empty page is fetched. In the case of the cached count affecting offset paging, the non-navigable pages do exist even though they never appear in the paging navigation.\r\n\r\nPR to be submitted with a change to just the getUsers() endpoint, other endpoints could benefit from this change but are not covered by the PR\r\n\r\n**Additional Reference**\r\n\r\nhttps://developer.zendesk.com/api-reference/introduction/pagination/\r\n\r\nhttps://developer.zendesk.com/documentation/api-basics/pagination/paginating-through-lists-using-cursor-pagination/\r\n\r\nCursor pagination includes a links and meta section in the response with an opaque cursor value that is be included to fetch the next page.\r\n\r\n```\r\n\"meta\": {\r\n \"has_more\": true,\r\n \"after_cursor\": \"xxx\",\r\n \"before_cursor\": \"yyy\"\r\n},\r\n\"links\": {\r\n \"next\": \"https://example.zendesk.com/api/v2/tickets.json?page[size]=100&page[after]=xxx\",\r\n \"prev\": \"https://example.zendesk.com/api/v2/tickets.json?page[size]=100&page[before]=yyy\"\r\n}\r\n```\r\n\r\n\r\nhttps://developer.zendesk.com/documentation/api-basics/pagination/paginating-through-lists-using-offset-pagination/\r\n\r\nOffset pagination includes a next_page link in the top level of the JSON response with a integer page value that returns values that start at an offset multiple from the beginning of the collection.\r\n\r\n```\r\n\"tickets\": [ ... ],\r\n\"next_page\": \"https://example.zendesk.com/api/v2/tickets.json?page=2\",\r\n```\r\n", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1461757964", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/555#issuecomment-1461757964", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/555", + "id": 1461757964, + "node_id": "IC_kwDOAIy5dc5XIKgM", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-09T10:32:07Z", + "updated_at": "2023-03-09T10:32:07Z", + "author_association": "COLLABORATOR", + "body": "@andy-may-at what you describe looks like a bug since the general concept of cursor pagination is documented (https://developer.zendesk.com/api-reference/introduction/pagination/#using-cursor-pagination) and references a link session.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1461757964/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-09T10:32:07Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27550084052", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550", + "id": 1613221196, + "node_id": "PR_kwDOAIy5dc5LdqJE", + "number": 550, + "title": "implemented list help center locales", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-07T11:08:48Z", + "updated_at": "2023-03-07T14:25:17Z", + "closed_at": "2023-03-07T14:05:52Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.patch", + "merged_at": "2023-03-07T14:05:52Z" + }, + "body": "fixes https://github.com/cloudbees-oss/zendesk-java-client/issues/549", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1458264916", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550#issuecomment-1458264916", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550", + "id": 1458264916, + "node_id": "IC_kwDOAIy5dc5W61tU", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-07T14:25:16Z", + "updated_at": "2023-03-07T14:25:16Z", + "author_association": "COLLABORATOR", + "body": "Released: https://github.com/cloudbees-oss/zendesk-java-client/discussions/551", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1458264916/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-07T14:25:17Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549963618", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12855635186, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "before": "cec624961df59051f8b3c980edb2ce30135826bc", + "commits": [ + { + "sha": "91b123ef7e6f5a71fe7112da9b73222933b17265", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/91b123ef7e6f5a71fe7112da9b73222933b17265" + } + ] + }, + "public": true, + "created_at": "2023-03-07T14:21:19Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549961320", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "zendesk-java-client-0.21.0", + "ref_type": "tag", + "master_branch": "master", + "description": "A Java client library for interacting with Zendesk", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-07T14:21:15Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549960472", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12855633557, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "cec624961df59051f8b3c980edb2ce30135826bc", + "before": "9b496817e01f5c61fbd134ee497fe162bf094719", + "commits": [ + { + "sha": "cec624961df59051f8b3c980edb2ce30135826bc", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare release zendesk-java-client-0.21.0", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/cec624961df59051f8b3c980edb2ce30135826bc" + } + ] + }, + "public": true, + "created_at": "2023-03-07T14:21:13Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549630445", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/548", + "id": 1612056219, + "node_id": "I_kwDOAIy5dc5gFgab", + "number": 548, + "title": "Enable search for users by external_id where external_id is a String (not a long)", + "user": { + "login": "andy-may-at", + "id": 86307738, + "node_id": "MDQ6VXNlcjg2MzA3NzM4", + "avatar_url": "https://avatars.githubusercontent.com/u/86307738?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andy-may-at", + "html_url": "https://github.com/andy-may-at", + "followers_url": "https://api.github.com/users/andy-may-at/followers", + "following_url": "https://api.github.com/users/andy-may-at/following{/other_user}", + "gists_url": "https://api.github.com/users/andy-may-at/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andy-may-at/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andy-may-at/subscriptions", + "organizations_url": "https://api.github.com/users/andy-may-at/orgs", + "repos_url": "https://api.github.com/users/andy-may-at/repos", + "events_url": "https://api.github.com/users/andy-may-at/events{/privacy}", + "received_events_url": "https://api.github.com/users/andy-may-at/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-03-06T19:13:43Z", + "updated_at": "2023-03-07T14:10:00Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "The method to retrieve users by external ID: (`public List getUsersByExternalIds(long externalId, long... externalIds)`) expects the external IDs to be `long`s, but the underlying value is a `String` in the Zendesk API \r\n\r\nIn my use case, our external IDs are Strings, so we can't search for users by external ID using this method,..\r\n\r\nI propose to implementing an additional `public List getUsersByExternalIds(String externalId, String... externalIds)` method which \r\n\r\nI'll look to raise a PR for this shortly if the change would be welcomed", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1458240284", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/548#issuecomment-1458240284", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/548", + "id": 1458240284, + "node_id": "IC_kwDOAIy5dc5W6vsc", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-07T14:10:00Z", + "updated_at": "2023-03-07T14:10:00Z", + "author_association": "COLLABORATOR", + "body": "@andy-may-at indeed that doesn't seem correct. PR welcome, you can also deprecate the old method taking longs for future removal.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1458240284/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-07T14:10:00Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549511971", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12855418820, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "9b496817e01f5c61fbd134ee497fe162bf094719", + "before": "8f66331c9627faac3a7adf1014f9bc0dbec8d394", + "commits": [ + { + "sha": "a590b6cf132077803921fa7b32cc3c6845461eb7", + "author": { + "email": "florian.waltenberger@lingohub.com", + "name": "Florian Waltenberger" + }, + "message": "implemented list help center locales", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/a590b6cf132077803921fa7b32cc3c6845461eb7" + }, + { + "sha": "9b496817e01f5c61fbd134ee497fe162bf094719", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #550 from Walti91/master", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/9b496817e01f5c61fbd134ee497fe162bf094719" + } + ] + }, + "public": true, + "created_at": "2023-03-07T14:05:54Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549512248", + "type": "IssuesEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/issues/549", + "id": 1613152930, + "node_id": "I_kwDOAIy5dc5gJsKi", + "number": 549, + "title": "Get help center locales doesn't include default locale", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2023-03-07T10:33:15Z", + "updated_at": "2023-03-07T14:05:53Z", + "closed_at": "2023-03-07T14:05:53Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "The current implementation to get the help center locales doesn't include the default locale and instead only returns the locales as list of strings.\r\nMethod: org.zendesk.client.v2.Zendesk#getHelpCenterLocales\r\nAPI: https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#list-enabled-locales-and-default-locale\r\n\r\nI would suggest to introduce a new method which includes the full response and mark the current one as deprecated to avoid a breaking change. \r\n\r\nIf this is okay I can take care of the implementation.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/549/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2023-03-07T14:05:54Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549511745", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 550, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550", + "id": 1266065988, + "node_id": "PR_kwDOAIy5dc5LdqJE", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550", + "number": 550, + "state": "closed", + "locked": false, + "title": "implemented list help center locales", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes https://github.com/cloudbees-oss/zendesk-java-client/issues/549", + "created_at": "2023-03-07T11:08:48Z", + "updated_at": "2023-03-07T14:05:52Z", + "closed_at": "2023-03-07T14:05:52Z", + "merged_at": "2023-03-07T14:05:52Z", + "merge_commit_sha": "9b496817e01f5c61fbd134ee497fe162bf094719", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a590b6cf132077803921fa7b32cc3c6845461eb7", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "a590b6cf132077803921fa7b32cc3c6845461eb7", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-07T11:06:44Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1168, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8f66331c9627faac3a7adf1014f9bc0dbec8d394", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-07T14:05:51Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1172, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a590b6cf132077803921fa7b32cc3c6845461eb7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 58, + "deletions": 6, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2023-03-07T14:05:53Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27549503544", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1328553121, + "node_id": "PRR_kwDOAIy5dc5PMByh", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks!", + "commit_id": "a590b6cf132077803921fa7b32cc3c6845461eb7", + "submitted_at": "2023-03-07T14:05:35Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550#pullrequestreview-1328553121", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550#pullrequestreview-1328553121" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550", + "id": 1266065988, + "node_id": "PR_kwDOAIy5dc5LdqJE", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550", + "number": 550, + "state": "open", + "locked": false, + "title": "implemented list help center locales", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "fixes https://github.com/cloudbees-oss/zendesk-java-client/issues/549", + "created_at": "2023-03-07T11:08:48Z", + "updated_at": "2023-03-07T14:05:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "9a2dfc2b86c0b382ef263cacf765e6d9166e8e75", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a590b6cf132077803921fa7b32cc3c6845461eb7", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "a590b6cf132077803921fa7b32cc3c6845461eb7", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-07T11:06:44Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1168, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "8f66331c9627faac3a7adf1014f9bc0dbec8d394", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-07T11:08:49Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1172, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 240, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 240, + "open_issues": 4, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/550" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/550/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/550/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/a590b6cf132077803921fa7b32cc3c6845461eb7" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-07T14:05:36Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511782012", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "id": 1607012351, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "number": 545, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-06T09:19:24Z", + "closed_at": "2023-03-06T08:50:07Z", + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "merged_at": "2023-03-06T08:50:07Z" + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1455766807", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#issuecomment-1455766807", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "id": 1455766807, + "node_id": "IC_kwDOAIy5dc5WxT0X", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-06T09:19:23Z", + "updated_at": "2023-03-06T09:19:23Z", + "author_association": "COLLABORATOR", + "body": "Released: https://github.com/cloudbees-oss/zendesk-java-client/discussions/547", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1455766807/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-06T09:19:24Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511613250", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12837356029, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8f66331c9627faac3a7adf1014f9bc0dbec8d394", + "before": "0e0ce0a46112a4ed9d61d2f476fed52e5b3af444", + "commits": [ + { + "sha": "8f66331c9627faac3a7adf1014f9bc0dbec8d394", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare for next development iteration", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/8f66331c9627faac3a7adf1014f9bc0dbec8d394" + } + ] + }, + "public": true, + "created_at": "2023-03-06T09:13:16Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511609830", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "zendesk-java-client-0.20.0", + "ref_type": "tag", + "master_branch": "master", + "description": "A Java client library for interacting with Zendesk", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-06T09:13:08Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511608454", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12837353794, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "0e0ce0a46112a4ed9d61d2f476fed52e5b3af444", + "before": "eb3a733e8d32b1d8ea0556482fad028684f29eb7", + "commits": [ + { + "sha": "0e0ce0a46112a4ed9d61d2f476fed52e5b3af444", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[maven-release-plugin] prepare release zendesk-java-client-0.20.0", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/0e0ce0a46112a4ed9d61d2f476fed52e5b3af444" + } + ] + }, + "public": true, + "created_at": "2023-03-06T09:13:05Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511029818", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12837092235, + "size": 3, + "distinct_size": 3, + "ref": "refs/heads/master", + "head": "eb3a733e8d32b1d8ea0556482fad028684f29eb7", + "before": "f29f8ff7de641cd458fcefc6f1a577f1b36f450f", + "commits": [ + { + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "author": { + "email": "florian.waltenberger@lingohub.com", + "name": "Florian Waltenberger" + }, + "message": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/e6d1c779143db4531cc7a441dd64f55ce72770d2" + }, + { + "sha": "bc165881d0a863eebd8a920c6de4e0843875d99f", + "author": { + "email": "florian.waltenberger@lingohub.com", + "name": "Florian Waltenberger" + }, + "message": "pr feedback and tests", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/bc165881d0a863eebd8a920c6de4e0843875d99f" + }, + { + "sha": "eb3a733e8d32b1d8ea0556482fad028684f29eb7", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #545 from Walti91/master", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/eb3a733e8d32b1d8ea0556482fad028684f29eb7" + } + ] + }, + "public": true, + "created_at": "2023-03-06T08:50:15Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511027087", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 545, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "closed", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-06T08:50:07Z", + "closed_at": "2023-03-06T08:50:07Z", + "merged_at": "2023-03-06T08:50:07Z", + "merge_commit_sha": "eb3a733e8d32b1d8ea0556482fad028684f29eb7", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 34598766, + "node_id": "MDU6TGFiZWwzNDU5ODc2Ng==", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/enhancement", + "name": "enhancement", + "color": "84b6eb", + "default": true, + "description": null + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/bc165881d0a863eebd8a920c6de4e0843875d99f", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "bc165881d0a863eebd8a920c6de4e0843875d99f", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-03T12:42:26Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-06T08:50:07Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 1, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/bc165881d0a863eebd8a920c6de4e0843875d99f" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 2, + "review_comments": 3, + "maintainer_can_modify": false, + "commits": 2, + "additions": 119, + "deletions": 0, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-03-06T08:50:08Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511021122", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1325745613, + "node_id": "PRR_kwDOAIy5dc5PBUXN", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Zendesk support confirmed there is a documentation issue on their end, so I think we can move in with this PR.\r\nThanks for the contribution.", + "commit_id": "bc165881d0a863eebd8a920c6de4e0843875d99f", + "submitted_at": "2023-03-06T08:49:52Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1325745613", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1325745613" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-06T08:49:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "5baf041bc7cfd9646633ec988791c1f4f1e73a2e", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/bc165881d0a863eebd8a920c6de4e0843875d99f", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "bc165881d0a863eebd8a920c6de4e0843875d99f", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-03T12:42:26Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-06T08:49:10Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 2, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/bc165881d0a863eebd8a920c6de4e0843875d99f" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-06T08:49:53Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511007923", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-06T08:49:17Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511006071", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12837081046, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "f29f8ff7de641cd458fcefc6f1a577f1b36f450f", + "before": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "commits": [ + { + "sha": "063facc896050bcf55cfe6d526386200efa242f6", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump maven-enforcer-plugin from 3.1.0 to 3.2.1\n\nBumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.1.0 to 3.2.1.\n- [Release notes](https://github.com/apache/maven-enforcer/releases)\n- [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.1.0...enforcer-3.2.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-enforcer-plugin\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/063facc896050bcf55cfe6d526386200efa242f6" + }, + { + "sha": "f29f8ff7de641cd458fcefc6f1a577f1b36f450f", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #546 from cloudbees-oss/dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/f29f8ff7de641cd458fcefc6f1a577f1b36f450f" + } + ] + }, + "public": true, + "created_at": "2023-03-06T08:49:12Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511004907", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 546, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546", + "id": 1262611667, + "node_id": "PR_kwDOAIy5dc5LQezT", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546", + "number": 546, + "state": "closed", + "locked": false, + "title": "Bump maven-enforcer-plugin from 3.1.0 to 3.2.1", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.1.0 to 3.2.1.\n
    \nRelease notes\n

    Sourced from maven-enforcer-plugin's releases.

    \n
    \n

    3.2.1

    \n\n

    🚨 Removed

    \n\n

    🚀 New features and improvements

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 4244e6a [maven-release-plugin] prepare release enforcer-3.2.1
    • \n
    • 65d68a3 [MENFORCER-464] Refresh site descriptors
    • \n
    • 73fef5a [MENFORCER-463] Change success message from executed to passed
    • \n
    • 769da0a [MENFORCER-462] Execute ReactorModuleConvergence only once
    • \n
    • 3e12af9 [MENFORCER-461] Fix NPE in RequirePluginVersions
    • \n
    • 86c0cc5 [maven-release-plugin] prepare for next development iteration
    • \n
    • 1937067 [maven-release-plugin] prepare release enforcer-3.2.0
    • \n
    • 84e0363 [MENFORCER-440] Fix pattern for Java 8 version
    • \n
    • 4bbf7cd [MENFORCER-415] Move error message to MojoException
    • \n
    • 26697b1 [MENFORCER-450] Code cleanup
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-enforcer-plugin&package-manager=maven&previous-version=3.1.0&new-version=3.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-03T20:56:50Z", + "updated_at": "2023-03-06T08:49:09Z", + "closed_at": "2023-03-06T08:49:09Z", + "merged_at": "2023-03-06T08:49:09Z", + "merge_commit_sha": "f29f8ff7de641cd458fcefc6f1a577f1b36f450f", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/063facc896050bcf55cfe6d526386200efa242f6", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "sha": "063facc896050bcf55cfe6d526386200efa242f6", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-06T08:49:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 2, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-06T08:49:08Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 2, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/063facc896050bcf55cfe6d526386200efa242f6" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-06T08:49:10Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27511003217", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1325744407, + "node_id": "PRR_kwDOAIy5dc5PBUEX", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "063facc896050bcf55cfe6d526386200efa242f6", + "submitted_at": "2023-03-06T08:49:04Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546#pullrequestreview-1325744407", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546#pullrequestreview-1325744407" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546", + "id": 1262611667, + "node_id": "PR_kwDOAIy5dc5LQezT", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546", + "number": 546, + "state": "open", + "locked": false, + "title": "Bump maven-enforcer-plugin from 3.1.0 to 3.2.1", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.1.0 to 3.2.1.\n
    \nRelease notes\n

    Sourced from maven-enforcer-plugin's releases.

    \n
    \n

    3.2.1

    \n\n

    🚨 Removed

    \n\n

    🚀 New features and improvements

    \n\n

    🐛 Bug Fixes

    \n\n

    📦 Dependency updates

    \n\n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 4244e6a [maven-release-plugin] prepare release enforcer-3.2.1
    • \n
    • 65d68a3 [MENFORCER-464] Refresh site descriptors
    • \n
    • 73fef5a [MENFORCER-463] Change success message from executed to passed
    • \n
    • 769da0a [MENFORCER-462] Execute ReactorModuleConvergence only once
    • \n
    • 3e12af9 [MENFORCER-461] Fix NPE in RequirePluginVersions
    • \n
    • 86c0cc5 [maven-release-plugin] prepare for next development iteration
    • \n
    • 1937067 [maven-release-plugin] prepare release enforcer-3.2.0
    • \n
    • 84e0363 [MENFORCER-440] Fix pattern for Java 8 version
    • \n
    • 4bbf7cd [MENFORCER-415] Move error message to MojoException
    • \n
    • 26697b1 [MENFORCER-450] Code cleanup
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-enforcer-plugin&package-manager=maven&previous-version=3.1.0&new-version=3.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-03-03T20:56:50Z", + "updated_at": "2023-03-06T08:49:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "bdf6ebe7b4be539bdf0e3765c254debe93c30083", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/063facc896050bcf55cfe6d526386200efa242f6", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "ref": "dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.2.1", + "sha": "063facc896050bcf55cfe6d526386200efa242f6", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T20:56:51Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T20:56:51Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1180, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/546" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/546/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/546/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/063facc896050bcf55cfe6d526386200efa242f6" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-06T08:49:05Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27474869649", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 44886691, + "name": "jenkins-infra/jenkins.io", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035", + "repository_url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/labels{/name}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/comments", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/events", + "html_url": "https://github.com/jenkins-infra/jenkins.io/issues/6035", + "id": 1583086031, + "node_id": "I_kwDOAqzqo85eW_nP", + "number": 6035, + "title": "[Nominations Open] Most Valuable Jenkins Advocate 2023 🏆", + "user": { + "login": "alyssat", + "id": 15133103, + "node_id": "MDQ6VXNlcjE1MTMzMTAz", + "avatar_url": "https://avatars.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 + }, + "labels": [ + { + "id": 1754219349, + "node_id": "MDU6TGFiZWwxNzU0MjE5MzQ5", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/governance", + "name": "governance", + "color": "d4c5f9", + "default": false, + "description": "" + }, + { + "id": 2052596420, + "node_id": "MDU6TGFiZWwyMDUyNTk2NDIw", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/cdf", + "name": "cdf", + "color": "18ce58", + "default": false, + "description": "Changes related to Continuous Delivery Foundation" + }, + { + "id": 5162575455, + "node_id": "LA_kwDOAqzqo88AAAABM7amXw", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/community", + "name": "community", + "color": "C2E0C6", + "default": false, + "description": "Posts and topics for community engagement" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2023-02-13T21:21:56Z", + "updated_at": "2023-03-03T15:24:11Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "This issue is to receive nominations for the Most Valuable Jenkins Advocate 2023. This award is presented to an individual who has helped advocate for Jenkins through organization of (a) local Jenkins Area Meet­up(s) or virtual equivalent.\r\n\r\nTo nominate someone, reply to this issue with the following:\r\n\r\n1. Full name of the person you’re nominating\r\n2. Short description of their contributions to Jenkins and why they should win.\r\n\r\nNomination Deadline: Friday, March 3, 2023\r\n\r\nPlease note: Last year's winner, Gavin Mogan, cannot win the award for Most Valuable Jenkins Advocate again this year.\r\n\r\nMore details are available here https://github.com/cdfoundation/foundation/blob/main/CDF%20Awards%20Guidelines.md \r\n", + "reactions": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/reactions", + "total_count": 2, + "+1": 2, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/1453694772", + "html_url": "https://github.com/jenkins-infra/jenkins.io/issues/6035#issuecomment-1453694772", + "issue_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035", + "id": 1453694772, + "node_id": "IC_kwDOAqzqo85WpZ80", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-03T15:24:11Z", + "updated_at": "2023-03-03T15:24:11Z", + "author_association": "CONTRIBUTOR", + "body": "1. @jmMeessen (Jean-Marc MEESSEN)\r\n2. for his work on GSOC and always seeing the best in people.", + "reactions": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/1453694772/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-03T15:24:11Z", + "org": { + "id": 7422698, + "login": "jenkins-infra", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkins-infra", + "avatar_url": "https://avatars.githubusercontent.com/u/7422698?" + } + }, + { + "id": "27474851880", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 44886691, + "name": "jenkins-infra/jenkins.io", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035", + "repository_url": "https://api.github.com/repos/jenkins-infra/jenkins.io", + "labels_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/labels{/name}", + "comments_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/comments", + "events_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/events", + "html_url": "https://github.com/jenkins-infra/jenkins.io/issues/6035", + "id": 1583086031, + "node_id": "I_kwDOAqzqo85eW_nP", + "number": 6035, + "title": "[Nominations Open] Most Valuable Jenkins Advocate 2023 🏆", + "user": { + "login": "alyssat", + "id": 15133103, + "node_id": "MDQ6VXNlcjE1MTMzMTAz", + "avatar_url": "https://avatars.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 + }, + "labels": [ + { + "id": 1754219349, + "node_id": "MDU6TGFiZWwxNzU0MjE5MzQ5", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/governance", + "name": "governance", + "color": "d4c5f9", + "default": false, + "description": "" + }, + { + "id": 2052596420, + "node_id": "MDU6TGFiZWwyMDUyNTk2NDIw", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/cdf", + "name": "cdf", + "color": "18ce58", + "default": false, + "description": "Changes related to Continuous Delivery Foundation" + }, + { + "id": 5162575455, + "node_id": "LA_kwDOAqzqo88AAAABM7amXw", + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/labels/community", + "name": "community", + "color": "C2E0C6", + "default": false, + "description": "Posts and topics for community engagement" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 7, + "created_at": "2023-02-13T21:21:56Z", + "updated_at": "2023-03-03T15:23:28Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "active_lock_reason": null, + "body": "This issue is to receive nominations for the Most Valuable Jenkins Advocate 2023. This award is presented to an individual who has helped advocate for Jenkins through organization of (a) local Jenkins Area Meet­up(s) or virtual equivalent.\r\n\r\nTo nominate someone, reply to this issue with the following:\r\n\r\n1. Full name of the person you’re nominating\r\n2. Short description of their contributions to Jenkins and why they should win.\r\n\r\nNomination Deadline: Friday, March 3, 2023\r\n\r\nPlease note: Last year's winner, Gavin Mogan, cannot win the award for Most Valuable Jenkins Advocate again this year.\r\n\r\nMore details are available here https://github.com/cdfoundation/foundation/blob/main/CDF%20Awards%20Guidelines.md \r\n", + "reactions": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/reactions", + "total_count": 2, + "+1": 2, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/1453693713", + "html_url": "https://github.com/jenkins-infra/jenkins.io/issues/6035#issuecomment-1453693713", + "issue_url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/6035", + "id": 1453693713, + "node_id": "IC_kwDOAqzqo85WpZsR", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-03T15:23:28Z", + "updated_at": "2023-03-03T15:23:28Z", + "author_association": "CONTRIBUTOR", + "body": "1. @gounthar Bruno Verachten once more\r\n2. For his patience guiding people on the discourse", + "reactions": { + "url": "https://api.github.com/repos/jenkins-infra/jenkins.io/issues/comments/1453693713/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-03T15:23:29Z", + "org": { + "id": 7422698, + "login": "jenkins-infra", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkins-infra", + "avatar_url": "https://avatars.githubusercontent.com/u/7422698?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-7.json new file mode 100644 index 0000000000..e513d3ba49 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-7.json @@ -0,0 +1,7527 @@ +[ + { + "id": "27472105536", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "repository_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/labels{/name}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/events", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "id": 1607012351, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "number": 545, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T13:33:40Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "merged_at": null + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1453540777", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#issuecomment-1453540777", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "id": 1453540777, + "node_id": "IC_kwDOAIy5dc5Wo0Wp", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-03-03T13:33:39Z", + "updated_at": "2023-03-03T13:33:39Z", + "author_association": "COLLABORATOR", + "body": "@Walti91 I opened a support ticket with Zendesk to understand why those APIs are not documented, we cannot really rely on them if the lack of documentation is on purpose and they are internal APIs for some reason. I'll keep you updated.", + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments/1453540777/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-03-03T13:33:40Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468623269", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:53:52Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468623237", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813598854, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "before": "7d12318007d21e106f7ff2db9ca3b5398b44f917", + "commits": [ + { + "sha": "047355c846d5f16b333fb35290b93407897a56bd", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump slf4j-api from 2.0.3 to 2.0.6\n\nBumps [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n- [Release notes](https://github.com/qos-ch/slf4j/releases)\n- [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.3...v_2.0.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-api\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/047355c846d5f16b333fb35290b93407897a56bd" + }, + { + "sha": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #530 from cloudbees-oss/dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/d7772f1f6a1068675804c7dcda537e1dab45c501" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:53:52Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468623041", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 530, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530", + "id": 1163740125, + "node_id": "PR_kwDOAIy5dc5FXUPd", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530", + "number": 530, + "state": "closed", + "locked": false, + "title": "Bump slf4j-api from 2.0.3 to 2.0.6", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n
    \nCommits\n
      \n
    • 5ff6f2c prepare for release 2.0.6
    • \n
    • 2f4aa75 fix SLF4J-575
    • \n
    • 363f0a5 remove unused parts
    • \n
    • 171679b SLF4J-574: Add full OSGi headers, especially "uses" clauses
    • \n
    • 921b5b3 fix FUNDING file
    • \n
    • e02244c fix FUNDING file
    • \n
    • 441d458 fix FUNDING file
    • \n
    • f5e741b add FUNDING file
    • \n
    • 2e71327 remove unused log4j dependency in the version definition section of pom.xml
    • \n
    • 3ff2a30 start work on 2.0.6-SNAPSHOT
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-api&package-manager=maven&previous-version=2.0.3&new-version=2.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-13T20:00:55Z", + "updated_at": "2023-03-03T10:53:50Z", + "closed_at": "2023-03-03T10:53:50Z", + "merged_at": "2023-03-03T10:53:50Z", + "merge_commit_sha": "d7772f1f6a1068675804c7dcda537e1dab45c501", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/047355c846d5f16b333fb35290b93407897a56bd", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "sha": "047355c846d5f16b333fb35290b93407897a56bd", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:50Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 2, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:50Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 2, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/047355c846d5f16b333fb35290b93407897a56bd" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:53:51Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468621290", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323544804, + "node_id": "PRR_kwDOAIy5dc5O47Dk", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "047355c846d5f16b333fb35290b93407897a56bd", + "submitted_at": "2023-03-03T10:53:45Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530#pullrequestreview-1323544804", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530#pullrequestreview-1323544804" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530", + "id": 1163740125, + "node_id": "PR_kwDOAIy5dc5FXUPd", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530", + "number": 530, + "state": "open", + "locked": false, + "title": "Bump slf4j-api from 2.0.3 to 2.0.6", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n
    \nCommits\n
      \n
    • 5ff6f2c prepare for release 2.0.6
    • \n
    • 2f4aa75 fix SLF4J-575
    • \n
    • 363f0a5 remove unused parts
    • \n
    • 171679b SLF4J-574: Add full OSGi headers, especially "uses" clauses
    • \n
    • 921b5b3 fix FUNDING file
    • \n
    • e02244c fix FUNDING file
    • \n
    • 441d458 fix FUNDING file
    • \n
    • f5e741b add FUNDING file
    • \n
    • 2e71327 remove unused log4j dependency in the version definition section of pom.xml
    • \n
    • 3ff2a30 start work on 2.0.6-SNAPSHOT
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-api&package-manager=maven&previous-version=2.0.3&new-version=2.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-13T20:00:55Z", + "updated_at": "2023-03-03T10:53:46Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "29a2a2fc62861da8c3121816504e7e5877414abc", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/047355c846d5f16b333fb35290b93407897a56bd", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "ref": "dependabot/maven/org.slf4j-slf4j-api-2.0.6", + "sha": "047355c846d5f16b333fb35290b93407897a56bd", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:37Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:37Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/530" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/530/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/530/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/047355c846d5f16b333fb35290b93407897a56bd" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:53:46Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468617885", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:53:37Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468617817", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813596310, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "7d12318007d21e106f7ff2db9ca3b5398b44f917", + "before": "af807c4e8423b247c3df85e1eb27dd28d6c3d6be", + "commits": [ + { + "sha": "089f3a3a2f51c371937a30bd13718a13147e6b2d", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump slf4j-simple from 2.0.3 to 2.0.6\n\nBumps [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n- [Release notes](https://github.com/qos-ch/slf4j/releases)\n- [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.3...v_2.0.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-simple\n dependency-type: direct:development\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/089f3a3a2f51c371937a30bd13718a13147e6b2d" + }, + { + "sha": "7d12318007d21e106f7ff2db9ca3b5398b44f917", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #531 from cloudbees-oss/dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/7d12318007d21e106f7ff2db9ca3b5398b44f917" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:53:37Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468617713", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 531, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531", + "id": 1163740260, + "node_id": "PR_kwDOAIy5dc5FXURk", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531", + "number": 531, + "state": "closed", + "locked": false, + "title": "Bump slf4j-simple from 2.0.3 to 2.0.6", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n
    \nCommits\n
      \n
    • 5ff6f2c prepare for release 2.0.6
    • \n
    • 2f4aa75 fix SLF4J-575
    • \n
    • 363f0a5 remove unused parts
    • \n
    • 171679b SLF4J-574: Add full OSGi headers, especially "uses" clauses
    • \n
    • 921b5b3 fix FUNDING file
    • \n
    • e02244c fix FUNDING file
    • \n
    • 441d458 fix FUNDING file
    • \n
    • f5e741b add FUNDING file
    • \n
    • 2e71327 remove unused log4j dependency in the version definition section of pom.xml
    • \n
    • 3ff2a30 start work on 2.0.6-SNAPSHOT
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-simple&package-manager=maven&previous-version=2.0.3&new-version=2.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-13T20:01:00Z", + "updated_at": "2023-03-03T10:53:36Z", + "closed_at": "2023-03-03T10:53:36Z", + "merged_at": "2023-03-03T10:53:36Z", + "merge_commit_sha": "7d12318007d21e106f7ff2db9ca3b5398b44f917", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/089f3a3a2f51c371937a30bd13718a13147e6b2d", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "ref": "dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "sha": "089f3a3a2f51c371937a30bd13718a13147e6b2d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:35Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:35Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 3, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/089f3a3a2f51c371937a30bd13718a13147e6b2d" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:53:37Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468615818", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323544210, + "node_id": "PRR_kwDOAIy5dc5O466S", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "089f3a3a2f51c371937a30bd13718a13147e6b2d", + "submitted_at": "2023-03-03T10:53:31Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531#pullrequestreview-1323544210", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531#pullrequestreview-1323544210" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531", + "id": 1163740260, + "node_id": "PR_kwDOAIy5dc5FXURk", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531", + "number": 531, + "state": "open", + "locked": false, + "title": "Bump slf4j-simple from 2.0.3 to 2.0.6", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.6.\n
    \nCommits\n
      \n
    • 5ff6f2c prepare for release 2.0.6
    • \n
    • 2f4aa75 fix SLF4J-575
    • \n
    • 363f0a5 remove unused parts
    • \n
    • 171679b SLF4J-574: Add full OSGi headers, especially "uses" clauses
    • \n
    • 921b5b3 fix FUNDING file
    • \n
    • e02244c fix FUNDING file
    • \n
    • 441d458 fix FUNDING file
    • \n
    • f5e741b add FUNDING file
    • \n
    • 2e71327 remove unused log4j dependency in the version definition section of pom.xml
    • \n
    • 3ff2a30 start work on 2.0.6-SNAPSHOT
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-simple&package-manager=maven&previous-version=2.0.3&new-version=2.0.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-13T20:01:00Z", + "updated_at": "2023-03-03T10:53:31Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "22889ed1814822116c726e68a0bbeee5270d9a4c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/089f3a3a2f51c371937a30bd13718a13147e6b2d", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "ref": "dependabot/maven/org.slf4j-slf4j-simple-2.0.6", + "sha": "089f3a3a2f51c371937a30bd13718a13147e6b2d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:25Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 4, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:25Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 4, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/531" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/531/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/531/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/089f3a3a2f51c371937a30bd13718a13147e6b2d" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:53:32Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468613335", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/github_actions/actions/stale-7", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:53:25Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468613327", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813594212, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "af807c4e8423b247c3df85e1eb27dd28d6c3d6be", + "before": "a81c2a174587d9ef53fbef43c8726de13c5cfee0", + "commits": [ + { + "sha": "28f8aab9f0c91c98de981e8153d26a198399a826", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump actions/stale from 6 to 7\n\nBumps [actions/stale](https://github.com/actions/stale) from 6 to 7.\n- [Release notes](https://github.com/actions/stale/releases)\n- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/stale/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: actions/stale\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/28f8aab9f0c91c98de981e8153d26a198399a826" + }, + { + "sha": "af807c4e8423b247c3df85e1eb27dd28d6c3d6be", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #532 from cloudbees-oss/dependabot/github_actions/actions/stale-7", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/af807c4e8423b247c3df85e1eb27dd28d6c3d6be" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:53:25Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468613078", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 532, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532", + "id": 1174178631, + "node_id": "PR_kwDOAIy5dc5F_ItH", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532", + "number": 532, + "state": "closed", + "locked": false, + "title": "Bump actions/stale from 6 to 7", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [actions/stale](https://github.com/actions/stale) from 6 to 7.\n
    \nRelease notes\n

    Sourced from actions/stale's releases.

    \n
    \n

    v7.0.0

    \n

    ⚠️ This version contains breaking changes ⚠️

    \n

    What's Changed

    \n\n

    Breaking Changes

    \n
      \n
    • In this release we prevent this action from managing the stale label on items included in exempt-issue-labels and exempt-pr-labels
    • \n
    • We decided that this is outside of the scope of this action, and to be left up to the maintainer
    • \n
    \n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/stale/compare/v6...v7.0.0

    \n

    v6.0.1

    \n

    Update @​actions/core to 1.10.0 #839

    \n

    Full Changelog: https://github.com/actions/stale/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nChangelog\n

    Sourced from actions/stale's changelog.

    \n
    \n

    Changelog

    \n

    [7.0.0]

    \n

    :warning: Breaking change :warning:

    \n\n

    [6.0.1]

    \n

    Update @​actions/core to v1.10.0 (#839)

    \n

    [6.0.0]

    \n

    :warning: Breaking change :warning:

    \n

    Issues/PRs default close-issue-reason is now not_planned(#789)

    \n

    [5.1.0]

    \n

    Don't process stale issues right after they're marked stale\n[Add close-issue-reason option]#764#772\nVarious dependabot/dependency updates

    \n

    4.1.0 (2021-07-14)

    \n

    Features

    \n\n

    4.0.0 (2021-07-14)

    \n

    Features

    \n
      \n
    • options: simplify config by removing skip stale message options (#457) (6ec637d), closes #405 #455
    • \n
    • output: print output parameters (#458) (3e6d35b)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • dry-run: forbid mutations in dry-run (#500) (f1017f3), closes #499
    • \n
    • logs: coloured logs (#465) (5fbbfba)
    • \n
    • operations: fail fast the current batch to respect the operations limit (#474) (5f6f311), closes #466
    • \n
    • label comparison: make label comparison case insensitive #517, closes #516
    • \n
    • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#519), fixes #441, #509, #518
    • \n
    \n

    Breaking Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 6f05e42 draft release for v7.0.0 (#888)
    • \n
    • eed91cb Update how stale handles exempt items (#874)
    • \n
    • 10dc265 Merge pull request #880 from akv-platform/update-stale-repo
    • \n
    • 9c1eb3f Update .md files and allign build-test.yml with the current test.yml
    • \n
    • bc357bd Update .github/workflows/release-new-action-version.yml
    • \n
    • 690ede5 Update .github/ISSUE_TEMPLATE/bug_report.md
    • \n
    • afbcabf Merge branch 'main' into update-stale-repo
    • \n
    • e364411 Update name of codeql.yml file
    • \n
    • 627cef3 fix print outputs step (#859)
    • \n
    • 975308f Merge pull request #876 from jongwooo/chore/use-cache-in-check-dist
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=6&new-version=7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-21T20:04:02Z", + "updated_at": "2023-03-03T10:53:24Z", + "closed_at": "2023-03-03T10:53:23Z", + "merged_at": "2023-03-03T10:53:23Z", + "merge_commit_sha": "af807c4e8423b247c3df85e1eb27dd28d6c3d6be", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/28f8aab9f0c91c98de981e8153d26a198399a826", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/actions/stale-7", + "ref": "dependabot/github_actions/actions/stale-7", + "sha": "28f8aab9f0c91c98de981e8153d26a198399a826", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:23Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 4, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:23Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 4, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/28f8aab9f0c91c98de981e8153d26a198399a826" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:53:25Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468611281", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323543728, + "node_id": "PRR_kwDOAIy5dc5O46yw", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "28f8aab9f0c91c98de981e8153d26a198399a826", + "submitted_at": "2023-03-03T10:53:19Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532#pullrequestreview-1323543728", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532#pullrequestreview-1323543728" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532", + "id": 1174178631, + "node_id": "PR_kwDOAIy5dc5F_ItH", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532", + "number": 532, + "state": "open", + "locked": false, + "title": "Bump actions/stale from 6 to 7", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [actions/stale](https://github.com/actions/stale) from 6 to 7.\n
    \nRelease notes\n

    Sourced from actions/stale's releases.

    \n
    \n

    v7.0.0

    \n

    ⚠️ This version contains breaking changes ⚠️

    \n

    What's Changed

    \n\n

    Breaking Changes

    \n
      \n
    • In this release we prevent this action from managing the stale label on items included in exempt-issue-labels and exempt-pr-labels
    • \n
    • We decided that this is outside of the scope of this action, and to be left up to the maintainer
    • \n
    \n

    New Contributors

    \n\n

    Full Changelog: https://github.com/actions/stale/compare/v6...v7.0.0

    \n

    v6.0.1

    \n

    Update @​actions/core to 1.10.0 #839

    \n

    Full Changelog: https://github.com/actions/stale/compare/v6.0.0...v6.0.1

    \n
    \n
    \n
    \nChangelog\n

    Sourced from actions/stale's changelog.

    \n
    \n

    Changelog

    \n

    [7.0.0]

    \n

    :warning: Breaking change :warning:

    \n\n

    [6.0.1]

    \n

    Update @​actions/core to v1.10.0 (#839)

    \n

    [6.0.0]

    \n

    :warning: Breaking change :warning:

    \n

    Issues/PRs default close-issue-reason is now not_planned(#789)

    \n

    [5.1.0]

    \n

    Don't process stale issues right after they're marked stale\n[Add close-issue-reason option]#764#772\nVarious dependabot/dependency updates

    \n

    4.1.0 (2021-07-14)

    \n

    Features

    \n\n

    4.0.0 (2021-07-14)

    \n

    Features

    \n
      \n
    • options: simplify config by removing skip stale message options (#457) (6ec637d), closes #405 #455
    • \n
    • output: print output parameters (#458) (3e6d35b)
    • \n
    \n

    Bug Fixes

    \n
      \n
    • dry-run: forbid mutations in dry-run (#500) (f1017f3), closes #499
    • \n
    • logs: coloured logs (#465) (5fbbfba)
    • \n
    • operations: fail fast the current batch to respect the operations limit (#474) (5f6f311), closes #466
    • \n
    • label comparison: make label comparison case insensitive #517, closes #516
    • \n
    • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#519), fixes #441, #509, #518
    • \n
    \n

    Breaking Changes

    \n\n
    \n

    ... (truncated)

    \n
    \n
    \nCommits\n
      \n
    • 6f05e42 draft release for v7.0.0 (#888)
    • \n
    • eed91cb Update how stale handles exempt items (#874)
    • \n
    • 10dc265 Merge pull request #880 from akv-platform/update-stale-repo
    • \n
    • 9c1eb3f Update .md files and allign build-test.yml with the current test.yml
    • \n
    • bc357bd Update .github/workflows/release-new-action-version.yml
    • \n
    • 690ede5 Update .github/ISSUE_TEMPLATE/bug_report.md
    • \n
    • afbcabf Merge branch 'main' into update-stale-repo
    • \n
    • e364411 Update name of codeql.yml file
    • \n
    • 627cef3 fix print outputs step (#859)
    • \n
    • 975308f Merge pull request #876 from jongwooo/chore/use-cache-in-check-dist
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=6&new-version=7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-12-21T20:04:02Z", + "updated_at": "2023-03-03T10:53:19Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "9ae26cabd7b6968e14dcaaca835850523d5b04d9", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/28f8aab9f0c91c98de981e8153d26a198399a826", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/actions/stale-7", + "ref": "dependabot/github_actions/actions/stale-7", + "sha": "28f8aab9f0c91c98de981e8153d26a198399a826", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:12Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 5, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:12Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 5, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/532" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/532/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/532/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/28f8aab9f0c91c98de981e8153d26a198399a826" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:53:20Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468608732", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813592032, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "a81c2a174587d9ef53fbef43c8726de13c5cfee0", + "before": "890101f02f8eb2baa60743366a5a1205dca63e62", + "commits": [ + { + "sha": "cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump assertj-core from 3.23.1 to 3.24.2\n\nBumps assertj-core from 3.23.1 to 3.24.2.\n\n---\nupdated-dependencies:\n- dependency-name: org.assertj:assertj-core\n dependency-type: direct:development\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/cbc94ebfdc1f4ea98643943e29ef67d3200e13a6" + }, + { + "sha": "a81c2a174587d9ef53fbef43c8726de13c5cfee0", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #538 from cloudbees-oss/dependabot/maven/org.assertj-assertj-core-3.24.2", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/a81c2a174587d9ef53fbef43c8726de13c5cfee0" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:53:13Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468608781", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/org.assertj-assertj-core-3.24.2", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:53:13Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468608523", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 538, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538", + "id": 1200784761, + "node_id": "PR_kwDOAIy5dc5HkoV5", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538", + "number": 538, + "state": "closed", + "locked": false, + "title": "Bump assertj-core from 3.23.1 to 3.24.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 assertj-core from 3.23.1 to 3.24.2.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.assertj:assertj-core&package-manager=maven&previous-version=3.23.1&new-version=3.24.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-01-17T20:00:48Z", + "updated_at": "2023-03-03T10:53:12Z", + "closed_at": "2023-03-03T10:53:11Z", + "merged_at": "2023-03-03T10:53:11Z", + "merge_commit_sha": "a81c2a174587d9ef53fbef43c8726de13c5cfee0", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.assertj-assertj-core-3.24.2", + "ref": "dependabot/maven/org.assertj-assertj-core-3.24.2", + "sha": "cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:11Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 5, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:53:11Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 5, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/cbc94ebfdc1f4ea98643943e29ef67d3200e13a6" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:53:12Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468606454", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323543257, + "node_id": "PRR_kwDOAIy5dc5O46rZ", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "submitted_at": "2023-03-03T10:53:06Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538#pullrequestreview-1323543257", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538#pullrequestreview-1323543257" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538", + "id": 1200784761, + "node_id": "PR_kwDOAIy5dc5HkoV5", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538", + "number": 538, + "state": "open", + "locked": false, + "title": "Bump assertj-core from 3.23.1 to 3.24.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 assertj-core from 3.23.1 to 3.24.2.\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.assertj:assertj-core&package-manager=maven&previous-version=3.23.1&new-version=3.24.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-01-17T20:00:48Z", + "updated_at": "2023-03-03T10:53:06Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "297f83e66f11146b932dc5b4772b6eef4c182ac0", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "head": { + "label": "cloudbees-oss:dependabot/maven/org.assertj-assertj-core-3.24.2", + "ref": "dependabot/maven/org.assertj-assertj-core-3.24.2", + "sha": "cbc94ebfdc1f4ea98643943e29ef67d3200e13a6", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:58Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:58Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/538" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/538/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/538/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/cbc94ebfdc1f4ea98643943e29ef67d3200e13a6" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:53:07Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468603573", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:52:59Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468603584", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813589541, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "890101f02f8eb2baa60743366a5a1205dca63e62", + "before": "141af481489c4f13645d7942c1010a7c9170efa7", + "commits": [ + { + "sha": "1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump jackson-bom from 2.13.4.20221013 to 2.14.2\n\nBumps [jackson-bom](https://github.com/FasterXML/jackson-bom) from 2.13.4.20221013 to 2.14.2.\n- [Release notes](https://github.com/FasterXML/jackson-bom/releases)\n- [Commits](https://github.com/FasterXML/jackson-bom/compare/jackson-bom-2.13.4.20221013...jackson-bom-2.14.2)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson:jackson-bom\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22" + }, + { + "sha": "890101f02f8eb2baa60743366a5a1205dca63e62", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #539 from cloudbees-oss/dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/890101f02f8eb2baa60743366a5a1205dca63e62" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:52:59Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468603414", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 539, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539", + "id": 1222233830, + "node_id": "PR_kwDOAIy5dc5I2c7m", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539", + "number": 539, + "state": "closed", + "locked": false, + "title": "Bump jackson-bom from 2.13.4.20221013 to 2.14.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [jackson-bom](https://github.com/FasterXML/jackson-bom) from 2.13.4.20221013 to 2.14.2.\n
    \nCommits\n
      \n
    • 6a38163 [maven-release-plugin] prepare release jackson-bom-2.14.2
    • \n
    • 6579bfc Prepare for 2.14.2 release
    • \n
    • 380ca76 Back to snapshot deps
    • \n
    • ce91dcc [maven-release-plugin] prepare for next development iteration
    • \n
    • 28345e8 [maven-release-plugin] prepare release jackson-bom-2.14.1
    • \n
    • 0d678d3 ...
    • \n
    • 04e59a5 Merge branch '2.14' of github.com:FasterXML/jackson-bom into 2.14
    • \n
    • 806813d [maven-release-plugin] prepare release jackson-bom-2.14.1
    • \n
    • 2a00d4b Prepare for 2.14.1 release
    • \n
    • 70c86d4 Merge pull request #55 from yeikel/patch-1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson:jackson-bom&package-manager=maven&previous-version=2.13.4.20221013&new-version=2.14.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-01-30T20:02:24Z", + "updated_at": "2023-03-03T10:52:57Z", + "closed_at": "2023-03-03T10:52:57Z", + "merged_at": "2023-03-03T10:52:57Z", + "merge_commit_sha": "890101f02f8eb2baa60743366a5a1205dca63e62", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "head": { + "label": "cloudbees-oss:dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "ref": "dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "sha": "1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:57Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:57Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 6, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:52:58Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468601518", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323542757, + "node_id": "PRR_kwDOAIy5dc5O46jl", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "submitted_at": "2023-03-03T10:52:52Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539#pullrequestreview-1323542757", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539#pullrequestreview-1323542757" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539", + "id": 1222233830, + "node_id": "PR_kwDOAIy5dc5I2c7m", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539", + "number": 539, + "state": "open", + "locked": false, + "title": "Bump jackson-bom from 2.13.4.20221013 to 2.14.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [jackson-bom](https://github.com/FasterXML/jackson-bom) from 2.13.4.20221013 to 2.14.2.\n
    \nCommits\n
      \n
    • 6a38163 [maven-release-plugin] prepare release jackson-bom-2.14.2
    • \n
    • 6579bfc Prepare for 2.14.2 release
    • \n
    • 380ca76 Back to snapshot deps
    • \n
    • ce91dcc [maven-release-plugin] prepare for next development iteration
    • \n
    • 28345e8 [maven-release-plugin] prepare release jackson-bom-2.14.1
    • \n
    • 0d678d3 ...
    • \n
    • 04e59a5 Merge branch '2.14' of github.com:FasterXML/jackson-bom into 2.14
    • \n
    • 806813d [maven-release-plugin] prepare release jackson-bom-2.14.1
    • \n
    • 2a00d4b Prepare for 2.14.1 release
    • \n
    • 70c86d4 Merge pull request #55 from yeikel/patch-1
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson:jackson-bom&package-manager=maven&previous-version=2.13.4.20221013&new-version=2.14.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-01-30T20:02:24Z", + "updated_at": "2023-03-03T10:52:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "7599c325dd276e7df57f97d2dd11c0b9a2a4ce18", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "head": { + "label": "cloudbees-oss:dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "ref": "dependabot/maven/com.fasterxml.jackson-jackson-bom-2.14.2", + "sha": "1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:40Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:40Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/539" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/539/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/539/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/1df67fbcf7f6e5ff02c6df2622005dcdc4cd6f22" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:52:53Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468596925", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:52:40Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468596908", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813586292, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "141af481489c4f13645d7942c1010a7c9170efa7", + "before": "44cc73e74e03722bf8dd950db96879f6cf7f233d", + "commits": [ + { + "sha": "f90d1d13ff5894e79158ea93f536094c3299b702", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump netty-bom from 4.1.84.Final to 4.1.89.Final\n\nBumps [netty-bom](https://github.com/netty/netty) from 4.1.84.Final to 4.1.89.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.1.84.Final...netty-4.1.89.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-bom\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/f90d1d13ff5894e79158ea93f536094c3299b702" + }, + { + "sha": "141af481489c4f13645d7942c1010a7c9170efa7", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #540 from cloudbees-oss/dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/141af481489c4f13645d7942c1010a7c9170efa7" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:52:40Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468596705", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 540, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540", + "id": 1239608156, + "node_id": "PR_kwDOAIy5dc5J4utc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540", + "number": 540, + "state": "closed", + "locked": false, + "title": "Bump netty-bom from 4.1.84.Final to 4.1.89.Final", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [netty-bom](https://github.com/netty/netty) from 4.1.84.Final to 4.1.89.Final.\n
    \nCommits\n
      \n
    • 263a745 [maven-release-plugin] prepare release netty-4.1.89.Final
    • \n
    • ed425fe Don't fail on HttpObjectDecoder's maxHeaderSize greater then (Integer.MAX_VAL...
    • \n
    • a803e10 Revert "Revert "Speed-up HTTP 1.1 header and line parsing (#12321)""
    • \n
    • 9993e07 Revert "Speed-up HTTP 1.1 header and line parsing (#12321)"
    • \n
    • 4475b5c [maven-release-plugin] prepare for next development iteration
    • \n
    • 828ea7c [maven-release-plugin] prepare release netty-4.1.88.Final
    • \n
    • d010e63 Add handling of inflight lookups to reduce real queries when lookup same host...
    • \n
    • 6c0e69a WebSocketServerProtocolHandler: make HandshakeComplete constructor public (#1...
    • \n
    • 06f70a4 AsciiStrings can be batch-encoded (#13197)
    • \n
    • 272d749 Add unit test that verifies cancelled entries in ChannelOutboundBuffer are co...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-bom&package-manager=maven&previous-version=4.1.84.Final&new-version=4.1.89.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-02-13T20:56:55Z", + "updated_at": "2023-03-03T10:52:39Z", + "closed_at": "2023-03-03T10:52:39Z", + "merged_at": "2023-03-03T10:52:39Z", + "merge_commit_sha": "141af481489c4f13645d7942c1010a7c9170efa7", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f90d1d13ff5894e79158ea93f536094c3299b702", + "head": { + "label": "cloudbees-oss:dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "ref": "dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "sha": "f90d1d13ff5894e79158ea93f536094c3299b702", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 7, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f90d1d13ff5894e79158ea93f536094c3299b702" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:52:40Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468594850", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323542094, + "node_id": "PRR_kwDOAIy5dc5O46ZO", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "f90d1d13ff5894e79158ea93f536094c3299b702", + "submitted_at": "2023-03-03T10:52:34Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540#pullrequestreview-1323542094", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540#pullrequestreview-1323542094" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540", + "id": 1239608156, + "node_id": "PR_kwDOAIy5dc5J4utc", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540", + "number": 540, + "state": "open", + "locked": false, + "title": "Bump netty-bom from 4.1.84.Final to 4.1.89.Final", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [netty-bom](https://github.com/netty/netty) from 4.1.84.Final to 4.1.89.Final.\n
    \nCommits\n
      \n
    • 263a745 [maven-release-plugin] prepare release netty-4.1.89.Final
    • \n
    • ed425fe Don't fail on HttpObjectDecoder's maxHeaderSize greater then (Integer.MAX_VAL...
    • \n
    • a803e10 Revert "Revert "Speed-up HTTP 1.1 header and line parsing (#12321)""
    • \n
    • 9993e07 Revert "Speed-up HTTP 1.1 header and line parsing (#12321)"
    • \n
    • 4475b5c [maven-release-plugin] prepare for next development iteration
    • \n
    • 828ea7c [maven-release-plugin] prepare release netty-4.1.88.Final
    • \n
    • d010e63 Add handling of inflight lookups to reduce real queries when lookup same host...
    • \n
    • 6c0e69a WebSocketServerProtocolHandler: make HandshakeComplete constructor public (#1...
    • \n
    • 06f70a4 AsciiStrings can be batch-encoded (#13197)
    • \n
    • 272d749 Add unit test that verifies cancelled entries in ChannelOutboundBuffer are co...
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-bom&package-manager=maven&previous-version=4.1.84.Final&new-version=4.1.89.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-02-13T20:56:55Z", + "updated_at": "2023-03-03T10:52:34Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ffde5ac4cc706267663c1e60c9583632776812e1", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471606969, + "node_id": "LA_kwDOAIy5dc7O7IS5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f90d1d13ff5894e79158ea93f536094c3299b702", + "head": { + "label": "cloudbees-oss:dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "ref": "dependabot/maven/io.netty-netty-bom-4.1.89.Final", + "sha": "f90d1d13ff5894e79158ea93f536094c3299b702", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:15Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:15Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/540" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/540/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/540/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/f90d1d13ff5894e79158ea93f536094c3299b702" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:52:34Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468588213", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "repository_id": 9222517, + "push_id": 12813582145, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "44cc73e74e03722bf8dd950db96879f6cf7f233d", + "before": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "commits": [ + { + "sha": "56e7a282a43630c0320e34de85242725c50a204b", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump release-drafter/release-drafter from 5.21.1 to 5.23.0\n\nBumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.21.1 to 5.23.0.\n- [Release notes](https://github.com/release-drafter/release-drafter/releases)\n- [Commits](https://github.com/release-drafter/release-drafter/compare/v5.21.1...v5.23.0)\n\n---\nupdated-dependencies:\n- dependency-name: release-drafter/release-drafter\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/56e7a282a43630c0320e34de85242725c50a204b" + }, + { + "sha": "44cc73e74e03722bf8dd950db96879f6cf7f233d", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #542 from cloudbees-oss/dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "distinct": true, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits/44cc73e74e03722bf8dd950db96879f6cf7f233d" + } + ] + }, + "public": true, + "created_at": "2023-03-03T10:52:16Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468588116", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "ref": "dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-03T10:52:16Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468587879", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "closed", + "number": 542, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542", + "id": 1249254793, + "node_id": "PR_kwDOAIy5dc5Kdh2J", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542", + "number": 542, + "state": "closed", + "locked": false, + "title": "Bump release-drafter/release-drafter from 5.21.1 to 5.23.0", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.21.1 to 5.23.0.\n
    \nRelease notes\n

    Sourced from release-drafter/release-drafter's releases.

    \n
    \n

    v5.23.0

    \n

    What's Changed

    \n

    New

    \n\n

    Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.22.0...v5.23.0

    \n

    v5.22.0

    \n

    What's Changed

    \n

    New

    \n\n

    Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.21.1...v5.22.0

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=release-drafter/release-drafter&package-manager=github_actions&previous-version=5.21.1&new-version=5.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-02-21T20:58:16Z", + "updated_at": "2023-03-03T10:52:14Z", + "closed_at": "2023-03-03T10:52:14Z", + "merged_at": "2023-03-03T10:52:14Z", + "merge_commit_sha": "44cc73e74e03722bf8dd950db96879f6cf7f233d", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/56e7a282a43630c0320e34de85242725c50a204b", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "ref": "dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "sha": "56e7a282a43630c0320e34de85242725c50a204b", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:14Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-03T10:52:14Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 8, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/56e7a282a43630c0320e34de85242725c50a204b" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-03-03T10:52:15Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468585926", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323541195, + "node_id": "PRR_kwDOAIy5dc5O46LL", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "commit_id": "56e7a282a43630c0320e34de85242725c50a204b", + "submitted_at": "2023-03-03T10:52:09Z", + "state": "approved", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542#pullrequestreview-1323541195", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542#pullrequestreview-1323541195" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542", + "id": 1249254793, + "node_id": "PR_kwDOAIy5dc5Kdh2J", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542", + "number": 542, + "state": "open", + "locked": false, + "title": "Bump release-drafter/release-drafter from 5.21.1 to 5.23.0", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.21.1 to 5.23.0.\n
    \nRelease notes\n

    Sourced from release-drafter/release-drafter's releases.

    \n
    \n

    v5.23.0

    \n

    What's Changed

    \n

    New

    \n\n

    Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.22.0...v5.23.0

    \n

    v5.22.0

    \n

    What's Changed

    \n

    New

    \n\n

    Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.21.1...v5.22.0

    \n
    \n
    \n
    \nCommits\n\n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=release-drafter/release-drafter&package-manager=github_actions&previous-version=5.21.1&new-version=5.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2023-02-21T20:58:16Z", + "updated_at": "2023-03-03T10:52:09Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "e73f400393b2b4ed77272ac6129ce409e99be88d", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 1677026329, + "node_id": "MDU6TGFiZWwxNjc3MDI2MzI5", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 3471562961, + "node_id": "LA_kwDOAIy5dc7O69jR", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels/github_actions", + "name": "github_actions", + "color": "000000", + "default": false, + "description": "Pull requests that update Github_actions code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/56e7a282a43630c0320e34de85242725c50a204b", + "head": { + "label": "cloudbees-oss:dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "ref": "dependabot/github_actions/release-drafter/release-drafter-5.23.0", + "sha": "56e7a282a43630c0320e34de85242725c50a204b", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/542" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/542/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/542/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/56e7a282a43630c0320e34de85242725c50a204b" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:52:10Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468578919", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297477", + "pull_request_review_id": 1323531725, + "id": 1124297477, + "node_id": "PRRC_kwDOAIy5dc5DA2sF", + "diff_hunk": "@@ -2384,6 +2399,14 @@ public Iterable getSectionTranslations(Long sectionId) {\n tmpl(\"/help_center/sections/{sectionId}/translations.json\").set(\"sectionId\", sectionId),\n handleList(Translation.class, \"translations\"));\n }\n+\n+ public Translation getSectionTranslation(long sectionId, String locale) {", + "path": "src/main/java/org/zendesk/client/v2/Zendesk.java", + "position": 34, + "original_position": 34, + "commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "original_commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "I don't see any endpoint to show translations for Section either.", + "created_at": "2023-03-03T10:49:08Z", + "updated_at": "2023-03-03T10:51:49Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297477", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297477" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297477" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297477/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 2403, + "original_line": 2403, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T10:51:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "600cbbb48986af544b33ad7ad2bf26685350c90c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-02T15:21:28Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:49:08Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-8.json new file mode 100644 index 0000000000..9724adc6fe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-8.json @@ -0,0 +1,8034 @@ +[ + { + "id": "27468578745", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323531725, + "node_id": "PRR_kwDOAIy5dc5O433N", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Thanks for the contribution!\r\n\r\nWe need to sort out if the endpoint you are using for category and section exist.\r\n\r\nWe will also need to add some tests to cover the new method(s). I know that it's a bit hard to write those tests since external contributors don't have access to our Zendesk sandbox. In case you are not able to write those, I can do it for you when I have some time.", + "commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "submitted_at": "2023-03-03T10:51:48Z", + "state": "changes_requested", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1323531725", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1323531725" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T10:51:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "600cbbb48986af544b33ad7ad2bf26685350c90c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-02T15:21:28Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:51:49Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468578886", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297141", + "pull_request_review_id": 1323531725, + "id": 1124297141, + "node_id": "PRRC_kwDOAIy5dc5DA2m1", + "diff_hunk": "@@ -2242,6 +2242,13 @@ public Iterable getArticleTranslations(Long articleId) {\n handleList(Translation.class, \"translations\"));\n }\n \n+ public Translation getArticleTranslation(long articleId, String locale) {", + "path": "src/main/java/org/zendesk/client/v2/Zendesk.java", + "position": 4, + "original_position": 4, + "commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "original_commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Shouldn't we use the same verb as the Zendesk API: https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation:\r\n\r\n```suggestion\r\n public Translation showArticleTranslation(long articleId, String locale) {\r\n```", + "created_at": "2023-03-03T10:48:47Z", + "updated_at": "2023-03-03T10:51:48Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297141", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297141" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297141" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297141/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 2245, + "original_line": 2245, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T10:51:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "600cbbb48986af544b33ad7ad2bf26685350c90c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-02T15:21:28Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:48:47Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468578822", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297059", + "pull_request_review_id": 1323531725, + "id": 1124297059, + "node_id": "PRRC_kwDOAIy5dc5DA2lj", + "diff_hunk": "@@ -2333,6 +2340,14 @@ public Iterable getCategoryTranslations(Long categoryId) {\n tmpl(\"/help_center/categories/{categoryId}/translations.json\").set(\"categoryId\", categoryId),\n handleList(Translation.class, \"translations\"));\n }\n+\n+ public Translation getCategoryTranslation(long categoryId, String locale) {", + "path": "src/main/java/org/zendesk/client/v2/Zendesk.java", + "position": 19, + "original_position": 19, + "commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "original_commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "I don't see any endpoint to show translations for Category, am I missing something?", + "created_at": "2023-03-03T10:48:41Z", + "updated_at": "2023-03-03T10:51:48Z", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297059", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297059" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#discussion_r1124297059" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + }, + "reactions": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments/1124297059/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 2344, + "original_line": 2344, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T10:51:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "600cbbb48986af544b33ad7ad2bf26685350c90c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-02T15:21:28Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:48:41Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27468578706", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 9222517, + "name": "cloudbees-oss/zendesk-java-client", + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client" + }, + "payload": { + "action": "created", + "review": { + "id": 1323531725, + "node_id": "PRR_kwDOAIy5dc5O433N", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Thanks for the contribution!\r\n\r\nWe need to sort out if the endpoint you are using for category and section exist.\r\n\r\nWe will also need to add some tests to cover the new method(s). I know that it's a bit hard to write those tests since external contributors don't have access to our Zendesk sandbox. In case you are not able to write those, I can do it for you when I have some time.", + "commit_id": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "submitted_at": "2023-03-03T10:51:48Z", + "state": "changes_requested", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1323531725", + "pull_request_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "author_association": "COLLABORATOR", + "_links": { + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545#pullrequestreview-1323531725" + }, + "pull_request": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545", + "id": 1260640470, + "node_id": "PR_kwDOAIy5dc5LI9jW", + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545", + "diff_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.diff", + "patch_url": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545.patch", + "issue_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545", + "number": 545, + "state": "open", + "locked": false, + "title": "implemented getCategoryTranslation, getSectionTranslation and getArticleTranslation.", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "body": "added methods to fetch a single translation for a category, section or an article. as seen here https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#show-translation", + "created_at": "2023-03-02T15:25:39Z", + "updated_at": "2023-03-03T10:51:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "600cbbb48986af544b33ad7ad2bf26685350c90c", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "duemir", + "id": 348580, + "node_id": "MDQ6VXNlcjM0ODU4MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/348580?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/duemir", + "html_url": "https://github.com/duemir", + "followers_url": "https://api.github.com/users/duemir/followers", + "following_url": "https://api.github.com/users/duemir/following{/other_user}", + "gists_url": "https://api.github.com/users/duemir/gists{/gist_id}", + "starred_url": "https://api.github.com/users/duemir/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/duemir/subscriptions", + "organizations_url": "https://api.github.com/users/duemir/orgs", + "repos_url": "https://api.github.com/users/duemir/repos", + "events_url": "https://api.github.com/users/duemir/events{/privacy}", + "received_events_url": "https://api.github.com/users/duemir/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits", + "review_comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments", + "review_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2", + "head": { + "label": "Walti91:master", + "ref": "master", + "sha": "e6d1c779143db4531cc7a441dd64f55ce72770d2", + "user": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608681427, + "node_id": "R_kgDOJEe90w", + "name": "zendesk-java-client", + "full_name": "Walti91/zendesk-java-client", + "private": false, + "owner": { + "login": "Walti91", + "id": 17833506, + "node_id": "MDQ6VXNlcjE3ODMzNTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/17833506?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Walti91", + "html_url": "https://github.com/Walti91", + "followers_url": "https://api.github.com/users/Walti91/followers", + "following_url": "https://api.github.com/users/Walti91/following{/other_user}", + "gists_url": "https://api.github.com/users/Walti91/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Walti91/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Walti91/subscriptions", + "organizations_url": "https://api.github.com/users/Walti91/orgs", + "repos_url": "https://api.github.com/users/Walti91/repos", + "events_url": "https://api.github.com/users/Walti91/events{/privacy}", + "received_events_url": "https://api.github.com/users/Walti91/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Walti91/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": true, + "url": "https://api.github.com/repos/Walti91/zendesk-java-client", + "forks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/Walti91/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Walti91/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Walti91/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/Walti91/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/Walti91/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/Walti91/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Walti91/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Walti91/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/Walti91/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Walti91/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Walti91/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/Walti91/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Walti91/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/Walti91/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Walti91/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/Walti91/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/Walti91/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Walti91/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Walti91/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Walti91/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/Walti91/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/Walti91/zendesk-java-client/deployments", + "created_at": "2023-03-02T14:22:26Z", + "updated_at": "2023-03-02T15:21:34Z", + "pushed_at": "2023-03-02T15:21:28Z", + "git_url": "git://github.com/Walti91/zendesk-java-client.git", + "ssh_url": "git@github.com:Walti91/zendesk-java-client.git", + "clone_url": "https://github.com/Walti91/zendesk-java-client.git", + "svn_url": "https://github.com/Walti91/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "cloudbees-oss:master", + "ref": "master", + "sha": "5b633c37a9587c33ed45b6b87a359f7ed56c205d", + "user": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 9222517, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjIyNTE3", + "name": "zendesk-java-client", + "full_name": "cloudbees-oss/zendesk-java-client", + "private": false, + "owner": { + "login": "cloudbees-oss", + "id": 18043353, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE4MDQzMzUz", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cloudbees-oss", + "html_url": "https://github.com/cloudbees-oss", + "followers_url": "https://api.github.com/users/cloudbees-oss/followers", + "following_url": "https://api.github.com/users/cloudbees-oss/following{/other_user}", + "gists_url": "https://api.github.com/users/cloudbees-oss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cloudbees-oss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cloudbees-oss/subscriptions", + "organizations_url": "https://api.github.com/users/cloudbees-oss/orgs", + "repos_url": "https://api.github.com/users/cloudbees-oss/repos", + "events_url": "https://api.github.com/users/cloudbees-oss/events{/privacy}", + "received_events_url": "https://api.github.com/users/cloudbees-oss/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "description": "A Java client library for interacting with Zendesk", + "fork": false, + "url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client", + "forks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/forks", + "keys_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/teams", + "hooks_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/hooks", + "issue_events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/events", + "assignees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/tags", + "blobs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/languages", + "stargazers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/stargazers", + "contributors_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contributors", + "subscribers_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscribers", + "subscription_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/subscription", + "commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/merges", + "archive_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/downloads", + "issues_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/labels{/name}", + "releases_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/deployments", + "created_at": "2013-04-04T16:29:19Z", + "updated_at": "2022-12-04T18:47:20Z", + "pushed_at": "2023-03-02T15:25:39Z", + "git_url": "git://github.com/cloudbees-oss/zendesk-java-client.git", + "ssh_url": "git@github.com:cloudbees-oss/zendesk-java-client.git", + "clone_url": "https://github.com/cloudbees-oss/zendesk-java-client.git", + "svn_url": "https://github.com/cloudbees-oss/zendesk-java-client", + "homepage": "https://developer.zendesk.com/rest_api/docs/api-clients/java#zendesk-java-client-by-cloudbees", + "size": 1160, + "stargazers_count": 145, + "watchers_count": 145, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 238, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "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=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "support-team" + ], + "visibility": "public", + "forks": 238, + "open_issues": 9, + "watchers": 145, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545" + }, + "html": { + "href": "https://github.com/cloudbees-oss/zendesk-java-client/pull/545" + }, + "issue": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545" + }, + "comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/issues/545/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/pulls/545/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/cloudbees-oss/zendesk-java-client/statuses/e6d1c779143db4531cc7a441dd64f55ce72770d2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-03-03T10:51:49Z", + "org": { + "id": 18043353, + "login": "cloudbees-oss", + "gravatar_id": "", + "url": "https://api.github.com/orgs/cloudbees-oss", + "avatar_url": "https://avatars.githubusercontent.com/u/18043353?" + } + }, + { + "id": "27449881624", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 617210, + "name": "hub4j/github-api", + "url": "https://api.github.com/repos/hub4j/github-api" + }, + "payload": { + "action": "opened", + "number": 1624, + "pull_request": { + "url": "https://api.github.com/repos/hub4j/github-api/pulls/1624", + "id": 1260748442, + "node_id": "PR_kwDOAAlq-s5LJX6a", + "html_url": "https://github.com/hub4j/github-api/pull/1624", + "diff_url": "https://github.com/hub4j/github-api/pull/1624.diff", + "patch_url": "https://github.com/hub4j/github-api/pull/1624.patch", + "issue_url": "https://api.github.com/repos/hub4j/github-api/issues/1624", + "number": 1624, + "state": "open", + "locked": false, + "title": "Generify OrgAppInstallationAuthorizationProvider to support any kind of app lookup.", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "# Description\r\n\r\nThe `OrgAppInstallationAuthorizationProvider` only works with organization level apps, leaving out user apps. The bulk of the class logic remains useful to perform application lookup other ways (eg using the installation id), or even to lookup for user application.\r\n\r\nThis PR provides a way for the API user to provide its own lookup logic.\r\n\r\nThis PR is submitted as a draft because:\r\n* I would need access to the `hub4j-test-org` as well as the installation id of the test app to finish writing the tests.\r\n* I'm not 100% convinced `OrgAppInstallationAuthorizationProvider` should be deprecated. The way I see it, it's not useless and just a maintenance burden...\r\n\r\n# Before submitting a PR:\r\n\r\n- [x] Changes must not break binary backwards compatibility. If you are unclear on how to make the change you think is needed while maintaining backward compatibility, [CONTRIBUTING.md](CONTRIBUTING.md) for details.\r\n- [x] Add JavaDocs and other comments as appropriate. Consider including links in comments to relevant documentation on https://docs.github.com/en/rest . \r\n- [ ] Add tests that cover any added or changed code. This generally requires capturing snapshot test data. See [CONTRIBUTING.md](CONTRIBUTING.md) for details.\r\n- [x] Run `mvn -D enable-ci clean install site` locally. If this command doesn't succeed, your change will not pass CI.\r\n- [x] Push your changes to a branch other than `main`. You will create your PR from that branch.\r\n\r\n# When creating a PR: \r\n\r\n- [x] Fill in the \"Description\" above with clear summary of the changes. This includes:\r\n- ~[ ] If this PR fixes one or more issues, include \"Fixes #\" lines for each issue.~ \r\n- ~[ ] Provide links to relevant documentation on https://docs.github.com/en/rest where possible.~\r\n- [ ] All lines of new code should be covered by tests as reported by code coverage. Any lines that are not covered must have PR comments explaining why they cannot be covered. For example, \"Reaching this particular exception is hard and is not a particular common scenario.\"\r\n- [x] Enable \"Allow edits from maintainers\".\r\n", + "created_at": "2023-03-02T16:37:48Z", + "updated_at": "2023-03-02T16:37:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/hub4j/github-api/pulls/1624/commits", + "review_comments_url": "https://api.github.com/repos/hub4j/github-api/pulls/1624/comments", + "review_comment_url": "https://api.github.com/repos/hub4j/github-api/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/issues/1624/comments", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/e222a60017b9a598298ddcba7337b676b5756103", + "head": { + "label": "PierreBtz:pbeitz/generic-install-provider", + "ref": "pbeitz/generic-install-provider", + "sha": "e222a60017b9a598298ddcba7337b676b5756103", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 608727059, + "node_id": "R_kgDOJEhwEw", + "name": "github-api", + "full_name": "PierreBtz/github-api", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/github-api", + "forks_url": "https://api.github.com/repos/PierreBtz/github-api/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/github-api/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/github-api/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/github-api/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/github-api/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/github-api/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/github-api/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/github-api/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/github-api/deployments", + "created_at": "2023-03-02T16:03:12Z", + "updated_at": "2023-02-28T04:43:18Z", + "pushed_at": "2023-03-02T16:28:49Z", + "git_url": "git://github.com/PierreBtz/github-api.git", + "ssh_url": "git@github.com:PierreBtz/github-api.git", + "clone_url": "https://github.com/PierreBtz/github-api.git", + "svn_url": "https://github.com/PierreBtz/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 41016, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + } + }, + "base": { + "label": "hub4j:main", + "ref": "main", + "sha": "600933b58a9c4b80e863ca4358f68217a794cbb9", + "user": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2023-02-28T04:43:18Z", + "pushed_at": "2023-03-02T16:37:49Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 41016, + "stargazers_count": 982, + "watchers_count": 982, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 662, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 138, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "api", + "client-library", + "github", + "github-api", + "github-api-v3", + "java", + "java-api" + ], + "visibility": "public", + "forks": 662, + "open_issues": 138, + "watchers": 982, + "default_branch": "main" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j/github-api/pulls/1624" + }, + "html": { + "href": "https://github.com/hub4j/github-api/pull/1624" + }, + "issue": { + "href": "https://api.github.com/repos/hub4j/github-api/issues/1624" + }, + "comments": { + "href": "https://api.github.com/repos/hub4j/github-api/issues/1624/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/hub4j/github-api/pulls/1624/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/hub4j/github-api/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/hub4j/github-api/pulls/1624/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/hub4j/github-api/statuses/e222a60017b9a598298ddcba7337b676b5756103" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": true, + "commits": 1, + "additions": 86, + "deletions": 46, + "changed_files": 4 + } + }, + "public": true, + "created_at": "2023-03-02T16:37:49Z", + "org": { + "id": 54909825, + "login": "hub4j", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?" + } + }, + { + "id": "27449651542", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 608727059, + "name": "PierreBtz/github-api", + "url": "https://api.github.com/repos/PierreBtz/github-api" + }, + "payload": { + "ref": "pbeitz/generic-install-provider", + "ref_type": "branch", + "master_branch": "main", + "description": "Java API for GitHub", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-03-02T16:28:53Z" + }, + { + "id": "27448947676", + "type": "ForkEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 617210, + "name": "hub4j/github-api", + "url": "https://api.github.com/repos/hub4j/github-api" + }, + "payload": { + "forkee": { + "id": 608727059, + "node_id": "R_kgDOJEhwEw", + "name": "github-api", + "full_name": "PierreBtz/github-api", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/github-api", + "description": "Java API for GitHub", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/github-api", + "forks_url": "https://api.github.com/repos/PierreBtz/github-api/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/github-api/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/github-api/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/github-api/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/github-api/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/github-api/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/github-api/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/github-api/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/github-api/deployments", + "created_at": "2023-03-02T16:03:12Z", + "updated_at": "2023-02-28T04:43:18Z", + "pushed_at": "2023-03-01T02:56:26Z", + "git_url": "git://github.com/PierreBtz/github-api.git", + "ssh_url": "git@github.com:PierreBtz/github-api.git", + "clone_url": "https://github.com/PierreBtz/github-api.git", + "svn_url": "https://github.com/PierreBtz/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 41016, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "public": true + } + }, + "public": true, + "created_at": "2023-03-02T16:03:13Z", + "org": { + "id": 54909825, + "login": "hub4j", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?" + } + }, + { + "id": "27288638668", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "repository_id": 100904802, + "push_id": 12722167193, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "4d00382fe22caedf78732525285d32bf401f15a3", + "before": "3ce35b0ff40de943389d18cdd7b6a350c4e01991", + "commits": [ + { + "sha": "89f62786d020420d17899ef79e192dafa7426652", + "author": { + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "name": "dependabot[bot]" + }, + "message": "Bump wiremock-jre8-standalone from 2.34.0 to 2.35.0\n\nBumps [wiremock-jre8-standalone](https://github.com/wiremock/wiremock) from 2.34.0 to 2.35.0.\n- [Release notes](https://github.com/wiremock/wiremock/releases)\n- [Commits](https://github.com/wiremock/wiremock/compare/2.34.0...2.35.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.github.tomakehurst:wiremock-jre8-standalone\n dependency-type: direct:development\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/89f62786d020420d17899ef79e192dafa7426652" + }, + { + "sha": "4d00382fe22caedf78732525285d32bf401f15a3", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #169 from jenkinsci/dependabot/maven/com.github.tomakehurst-wiremock-jre8-standalone-2.35.0", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/4d00382fe22caedf78732525285d32bf401f15a3" + } + ] + }, + "public": true, + "created_at": "2023-02-23T15:09:51Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27288638616", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "ref": "dependabot/maven/com.github.tomakehurst-wiremock-jre8-standalone-2.35.0", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-02-23T15:09:50Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27288638428", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "action": "closed", + "number": 169, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169", + "id": 1112158880, + "node_id": "PR_kwDOBgOvYs5CSjKg", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/169", + "diff_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/169.diff", + "patch_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/169.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/169", + "number": 169, + "state": "closed", + "locked": false, + "title": "Bump wiremock-jre8-standalone from 2.34.0 to 2.35.0", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.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 [wiremock-jre8-standalone](https://github.com/wiremock/wiremock) from 2.34.0 to 2.35.0.\n
    \nRelease notes\n

    Sourced from wiremock-jre8-standalone's releases.

    \n
    \n

    2.35.0

    \n

    Enhancements

    \n
      \n
    • Add a negative contains matcher - thanks Damian Orzepowski
    • \n
    • Expose a Java API method for removing stubs by ID - thanks Patryk Fraczek
    • \n
    • Document the import API in the OpenAPI doc - thanks to user i-whammy
    • \n
    • Added the ability to restrict the addresses WireMock can proxy/record to, as a security measure.
    • \n
    \n

    Fixes

    \n
      \n
    • Strip Maven directories from the standalone JAR as some were appearing that weren't related to dependencies actually present, confusing scanning tools - thanks to user krageon
    • \n
    • Dropped back to slf4j 1.7.36 and relocate it in the standalone JAR (ensuring 2.x users won't experience conflicts).
    • \n
    \n
    \n
    \n
    \nCommits\n
      \n
    • a137ab1 Fixed #1684 - Expose remove stub mapping by ID (#1986)
    • \n
    • 6cfd74d Bump mockito-core from 4.8.0 to 4.8.1 (#1998)
    • \n
    • 328f6e5 Bumped minor version
    • \n
    • e1368f4 Added slf4j no-op (disables logging and annoying messages from slf4j) to the ...
    • \n
    • 1f43b27 Dropped back down to slf4j 1.7.36 and relocated it in the standalone JAR to a...
    • \n
    • b367b7b Switched BodyChunker to use the configured notifier rather than creating its own
    • \n
    • dac7adb Bumping Handlebars library version to 4.3.1, that includes the fixed (#1995)
    • \n
    • bfc5f1d removes maven dir in output shadow jar (#1993)
    • \n
    • 0746383 Bump versions.jsonUnit from 2.35.0 to 2.36.0 (#1976)
    • \n
    • d77938b Bump asm from 9.3 to 9.4 (#1974)
    • \n
    • Additional commits viewable in compare view
    • \n
    \n
    \n
    \n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.tomakehurst:wiremock-jre8-standalone&package-manager=maven&previous-version=2.34.0&new-version=2.35.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\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\n\n
    ", + "created_at": "2022-11-07T02:00:26Z", + "updated_at": "2023-02-23T15:09:49Z", + "closed_at": "2023-02-23T15:09:49Z", + "merged_at": "2023-02-23T15:09:49Z", + "merge_commit_sha": "4d00382fe22caedf78732525285d32bf401f15a3", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars.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 + }, + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "kwhetstone", + "id": 14875282, + "node_id": "MDQ6VXNlcjE0ODc1Mjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/14875282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kwhetstone", + "html_url": "https://github.com/kwhetstone", + "followers_url": "https://api.github.com/users/kwhetstone/followers", + "following_url": "https://api.github.com/users/kwhetstone/following{/other_user}", + "gists_url": "https://api.github.com/users/kwhetstone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kwhetstone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kwhetstone/subscriptions", + "organizations_url": "https://api.github.com/users/kwhetstone/orgs", + "repos_url": "https://api.github.com/users/kwhetstone/repos", + "events_url": "https://api.github.com/users/kwhetstone/events{/privacy}", + "received_events_url": "https://api.github.com/users/kwhetstone/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 2217439742, + "node_id": "MDU6TGFiZWwyMjE3NDM5NzQy", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + }, + { + "id": 4678382997, + "node_id": "LA_kwDOBgOvYs8AAAABFtp1lQ", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/labels/java", + "name": "java", + "color": "ffa221", + "default": false, + "description": "Pull requests that update Java code" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/169/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/89f62786d020420d17899ef79e192dafa7426652", + "head": { + "label": "jenkinsci:dependabot/maven/com.github.tomakehurst-wiremock-jre8-standalone-2.35.0", + "ref": "dependabot/maven/com.github.tomakehurst-wiremock-jre8-standalone-2.35.0", + "sha": "89f62786d020420d17899ef79e192dafa7426652", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-02-23T14:52:53Z", + "pushed_at": "2023-02-23T15:09:48Z", + "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": 6200, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 4, + "watchers": 8, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "6556556832d40e575d8c236c1e8895400e71d2da", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-02-23T14:52:53Z", + "pushed_at": "2023-02-23T15:09:48Z", + "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": 6200, + "stargazers_count": 8, + "watchers_count": 8, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 4, + "watchers": 8, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169" + }, + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/169" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/169" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/169/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/169/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/89f62786d020420d17899ef79e192dafa7426652" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-02-23T15:09:50Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27288109185", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "repository_id": 100904802, + "push_id": 12721917437, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "3ce35b0ff40de943389d18cdd7b6a350c4e01991", + "before": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "commits": [ + { + "sha": "22c441f1dcdc535d002bed6e5eabc59598dced29", + "author": { + "email": "jtnord@users.noreply.github.com", + "name": "James Nord" + }, + "message": "close stream so directory can be cleaned", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/22c441f1dcdc535d002bed6e5eabc59598dced29" + }, + { + "sha": "3ce35b0ff40de943389d18cdd7b6a350c4e01991", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #180 from jtnord/close-stream", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/3ce35b0ff40de943389d18cdd7b6a350c4e01991" + } + ] + }, + "public": true, + "created_at": "2023-02-23T14:51:31Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27288108935", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "action": "closed", + "number": 180, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180", + "id": 1251803969, + "node_id": "PR_kwDOBgOvYs5KnQNB", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180", + "diff_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180.diff", + "patch_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180", + "number": 180, + "state": "closed", + "locked": false, + "title": "close stream so directory can be cleaned", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "body": "\r\n\r\n- [ ] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [ ] Ensure that the pull request title represents the desired changelog entry\r\n- [ ] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [ ] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2023-02-23T14:38:41Z", + "updated_at": "2023-02-23T14:51:30Z", + "closed_at": "2023-02-23T14:51:30Z", + "merged_at": "2023-02-23T14:51:30Z", + "merge_commit_sha": "3ce35b0ff40de943389d18cdd7b6a350c4e01991", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars.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 + }, + { + "login": "kwhetstone", + "id": 14875282, + "node_id": "MDQ6VXNlcjE0ODc1Mjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/14875282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kwhetstone", + "html_url": "https://github.com/kwhetstone", + "followers_url": "https://api.github.com/users/kwhetstone/followers", + "following_url": "https://api.github.com/users/kwhetstone/following{/other_user}", + "gists_url": "https://api.github.com/users/kwhetstone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kwhetstone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kwhetstone/subscriptions", + "organizations_url": "https://api.github.com/users/kwhetstone/orgs", + "repos_url": "https://api.github.com/users/kwhetstone/repos", + "events_url": "https://api.github.com/users/kwhetstone/events{/privacy}", + "received_events_url": "https://api.github.com/users/kwhetstone/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/22c441f1dcdc535d002bed6e5eabc59598dced29", + "head": { + "label": "jtnord:close-stream", + "ref": "close-stream", + "sha": "22c441f1dcdc535d002bed6e5eabc59598dced29", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 605562646, + "node_id": "R_kgDOJBgnFg", + "name": "cloudbees-jenkins-advisor-plugin", + "full_name": "jtnord/cloudbees-jenkins-advisor-plugin", + "private": false, + "owner": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "description": "Jenkins Health Advisor by CloudBees proactively notifies you of problems with your Jenkins-based environment.", + "fork": true, + "url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin", + "forks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/forks", + "keys_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/events", + "assignees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/merges", + "archive_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/deployments", + "created_at": "2023-02-23T12:26:35Z", + "updated_at": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T14:38:33Z", + "git_url": "git://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "ssh_url": "git@github.com:jtnord/cloudbees-jenkins-advisor-plugin.git", + "clone_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "svn_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "homepage": "https://plugins.jenkins.io/cloudbees-jenkins-advisor", + "size": 6199, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T14:51:29Z", + "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": 6189, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 5, + "watchers": 7, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180" + }, + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/22c441f1dcdc535d002bed6e5eabc59598dced29" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 2, + "maintainer_can_modify": false, + "commits": 1, + "additions": 7, + "deletions": 2, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-02-23T14:51:31Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27288103149", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1311476749, + "node_id": "PRR_kwDOBgOvYs5OK4wN", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Thanks!", + "commit_id": "22c441f1dcdc535d002bed6e5eabc59598dced29", + "submitted_at": "2023-02-23T14:51:17Z", + "state": "approved", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180#pullrequestreview-1311476749", + "pull_request_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180#pullrequestreview-1311476749" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180", + "id": 1251803969, + "node_id": "PR_kwDOBgOvYs5KnQNB", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180", + "diff_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180.diff", + "patch_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180", + "number": 180, + "state": "open", + "locked": false, + "title": "close stream so directory can be cleaned", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "body": "\r\n\r\n- [ ] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [ ] Ensure that the pull request title represents the desired changelog entry\r\n- [ ] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [ ] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2023-02-23T14:38:41Z", + "updated_at": "2023-02-23T14:51:17Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "121f9108d805c542280e905fcca69e1bacc4e436", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars.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 + }, + { + "login": "kwhetstone", + "id": 14875282, + "node_id": "MDQ6VXNlcjE0ODc1Mjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/14875282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kwhetstone", + "html_url": "https://github.com/kwhetstone", + "followers_url": "https://api.github.com/users/kwhetstone/followers", + "following_url": "https://api.github.com/users/kwhetstone/following{/other_user}", + "gists_url": "https://api.github.com/users/kwhetstone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kwhetstone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kwhetstone/subscriptions", + "organizations_url": "https://api.github.com/users/kwhetstone/orgs", + "repos_url": "https://api.github.com/users/kwhetstone/repos", + "events_url": "https://api.github.com/users/kwhetstone/events{/privacy}", + "received_events_url": "https://api.github.com/users/kwhetstone/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/22c441f1dcdc535d002bed6e5eabc59598dced29", + "head": { + "label": "jtnord:close-stream", + "ref": "close-stream", + "sha": "22c441f1dcdc535d002bed6e5eabc59598dced29", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 605562646, + "node_id": "R_kgDOJBgnFg", + "name": "cloudbees-jenkins-advisor-plugin", + "full_name": "jtnord/cloudbees-jenkins-advisor-plugin", + "private": false, + "owner": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "description": "Jenkins Health Advisor by CloudBees proactively notifies you of problems with your Jenkins-based environment.", + "fork": true, + "url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin", + "forks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/forks", + "keys_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/events", + "assignees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/merges", + "archive_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/deployments", + "created_at": "2023-02-23T12:26:35Z", + "updated_at": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T14:38:33Z", + "git_url": "git://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "ssh_url": "git@github.com:jtnord/cloudbees-jenkins-advisor-plugin.git", + "clone_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "svn_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "homepage": "https://plugins.jenkins.io/cloudbees-jenkins-advisor", + "size": 6199, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T14:38:42Z", + "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": 6189, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 6, + "watchers": 7, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180" + }, + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/180" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/180/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/180/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/22c441f1dcdc535d002bed6e5eabc59598dced29" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-02-23T14:51:18Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27286675248", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "repository_id": 100904802, + "push_id": 12721222013, + "size": 4, + "distinct_size": 4, + "ref": "refs/heads/master", + "head": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "before": "6556556832d40e575d8c236c1e8895400e71d2da", + "commits": [ + { + "sha": "123565ef635570a1b9023b1b3b6d192599fb26e1", + "author": { + "email": "jtnord@users.noreply.github.com", + "name": "James Nord" + }, + "message": "Add windows back\n\nSeveral tests are flaky and the performace of the windows agents meant\nthey where more likely than not to flake.\n\nHowever I am observing these flakes in a different CI system running\nLinux - so they are there and they are not windows specific. so it is\nbetter to have the report that the code is bad than to completely ignore\nit.", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/123565ef635570a1b9023b1b3b6d192599fb26e1" + }, + { + "sha": "e08f0e6c8ace30323edfc5e667e4661620582738", + "author": { + "email": "jtnord@users.noreply.github.com", + "name": "James Nord" + }, + "message": "fix flkay BundleUploadTest.execute()", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/e08f0e6c8ace30323edfc5e667e4661620582738" + }, + { + "sha": "aa4a43b1476c4a39fca15a4bace06246939a03ef", + "author": { + "email": "jtnord@users.noreply.github.com", + "name": "James Nord" + }, + "message": "alternaive approach without changing prod code", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/aa4a43b1476c4a39fca15a4bace06246939a03ef" + }, + { + "sha": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #179 from jtnord/bundle-upload-flake", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/commits/78a23dc3e50b5c4ed804d9b584da00942544420f" + } + ] + }, + "public": true, + "created_at": "2023-02-23T13:59:00Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27286675063", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "action": "closed", + "number": 179, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179", + "id": 1251615381, + "node_id": "PR_kwDOBgOvYs5KmiKV", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179", + "diff_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179.diff", + "patch_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179", + "number": 179, + "state": "closed", + "locked": false, + "title": "Fix flaky BundleUploadTest", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "body": "`BundleUploadTest` is flaky and the performance of the windows agents meant they where more likely than not to flake.\r\n\r\nHowever I am observing these flakes in a different CI system running Linux.\r\n\r\nthis changes the test to call the synchonous `execute(TaskListener)` rather than the asynchronous `run`\r\n\r\n\r\n\r\n- [x] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [x] Ensure that the pull request title represents the desired changelog entry\r\n- [x] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [x] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [x] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2023-02-23T12:28:42Z", + "updated_at": "2023-02-23T13:58:59Z", + "closed_at": "2023-02-23T13:58:59Z", + "merged_at": "2023-02-23T13:58:58Z", + "merge_commit_sha": "78a23dc3e50b5c4ed804d9b584da00942544420f", + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars.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 + }, + { + "login": "kwhetstone", + "id": 14875282, + "node_id": "MDQ6VXNlcjE0ODc1Mjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/14875282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kwhetstone", + "html_url": "https://github.com/kwhetstone", + "followers_url": "https://api.github.com/users/kwhetstone/followers", + "following_url": "https://api.github.com/users/kwhetstone/following{/other_user}", + "gists_url": "https://api.github.com/users/kwhetstone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kwhetstone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kwhetstone/subscriptions", + "organizations_url": "https://api.github.com/users/kwhetstone/orgs", + "repos_url": "https://api.github.com/users/kwhetstone/repos", + "events_url": "https://api.github.com/users/kwhetstone/events{/privacy}", + "received_events_url": "https://api.github.com/users/kwhetstone/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 2409220647, + "node_id": "MDU6TGFiZWwyNDA5MjIwNjQ3", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/labels/chore", + "name": "chore", + "color": "0096aa", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/aa4a43b1476c4a39fca15a4bace06246939a03ef", + "head": { + "label": "jtnord:bundle-upload-flake", + "ref": "bundle-upload-flake", + "sha": "aa4a43b1476c4a39fca15a4bace06246939a03ef", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 605562646, + "node_id": "R_kgDOJBgnFg", + "name": "cloudbees-jenkins-advisor-plugin", + "full_name": "jtnord/cloudbees-jenkins-advisor-plugin", + "private": false, + "owner": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "description": "Jenkins Health Advisor by CloudBees proactively notifies you of problems with your Jenkins-based environment.", + "fork": true, + "url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin", + "forks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/forks", + "keys_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/events", + "assignees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/merges", + "archive_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/deployments", + "created_at": "2023-02-23T12:26:35Z", + "updated_at": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T13:42:37Z", + "git_url": "git://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "ssh_url": "git@github.com:jtnord/cloudbees-jenkins-advisor-plugin.git", + "clone_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "svn_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "homepage": "https://plugins.jenkins.io/cloudbees-jenkins-advisor", + "size": 6194, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "6556556832d40e575d8c236c1e8895400e71d2da", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T13:58:58Z", + "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": 6189, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 5, + "watchers": 7, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179" + }, + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/aa4a43b1476c4a39fca15a4bace06246939a03ef" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 3, + "additions": 13, + "deletions": 16, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2023-02-23T13:59:00Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "27286672479", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 100904802, + "name": "jenkinsci/cloudbees-jenkins-advisor-plugin", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1311373908, + "node_id": "PRR_kwDOBgOvYs5OKfpU", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks!", + "commit_id": "aa4a43b1476c4a39fca15a4bace06246939a03ef", + "submitted_at": "2023-02-23T13:58:52Z", + "state": "approved", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179#pullrequestreview-1311373908", + "pull_request_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179#pullrequestreview-1311373908" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179", + "id": 1251615381, + "node_id": "PR_kwDOBgOvYs5KmiKV", + "html_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179", + "diff_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179.diff", + "patch_url": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179", + "number": 179, + "state": "open", + "locked": false, + "title": "Fix flaky BundleUploadTest", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "body": "`BundleUploadTest` is flaky and the performance of the windows agents meant they where more likely than not to flake.\r\n\r\nHowever I am observing these flakes in a different CI system running Linux.\r\n\r\nthis changes the test to call the synchonous `execute(TaskListener)` rather than the asynchronous `run`\r\n\r\n\r\n\r\n- [x] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [x] Ensure that the pull request title represents the desired changelog entry\r\n- [x] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [x] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [x] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2023-02-23T12:28:42Z", + "updated_at": "2023-02-23T13:58:53Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "862aa8e9ac0451803bfefc27ba9075d3aa223dd4", + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "aheritier", + "id": 174600, + "node_id": "MDQ6VXNlcjE3NDYwMA==", + "avatar_url": "https://avatars.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 + }, + { + "login": "kwhetstone", + "id": 14875282, + "node_id": "MDQ6VXNlcjE0ODc1Mjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/14875282?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kwhetstone", + "html_url": "https://github.com/kwhetstone", + "followers_url": "https://api.github.com/users/kwhetstone/followers", + "following_url": "https://api.github.com/users/kwhetstone/following{/other_user}", + "gists_url": "https://api.github.com/users/kwhetstone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kwhetstone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kwhetstone/subscriptions", + "organizations_url": "https://api.github.com/users/kwhetstone/orgs", + "repos_url": "https://api.github.com/users/kwhetstone/repos", + "events_url": "https://api.github.com/users/kwhetstone/events{/privacy}", + "received_events_url": "https://api.github.com/users/kwhetstone/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 2409220647, + "node_id": "MDU6TGFiZWwyNDA5MjIwNjQ3", + "url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/labels/chore", + "name": "chore", + "color": "0096aa", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/aa4a43b1476c4a39fca15a4bace06246939a03ef", + "head": { + "label": "jtnord:bundle-upload-flake", + "ref": "bundle-upload-flake", + "sha": "aa4a43b1476c4a39fca15a4bace06246939a03ef", + "user": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 605562646, + "node_id": "R_kgDOJBgnFg", + "name": "cloudbees-jenkins-advisor-plugin", + "full_name": "jtnord/cloudbees-jenkins-advisor-plugin", + "private": false, + "owner": { + "login": "jtnord", + "id": 494726, + "node_id": "MDQ6VXNlcjQ5NDcyNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/494726?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jtnord", + "html_url": "https://github.com/jtnord", + "followers_url": "https://api.github.com/users/jtnord/followers", + "following_url": "https://api.github.com/users/jtnord/following{/other_user}", + "gists_url": "https://api.github.com/users/jtnord/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtnord/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtnord/subscriptions", + "organizations_url": "https://api.github.com/users/jtnord/orgs", + "repos_url": "https://api.github.com/users/jtnord/repos", + "events_url": "https://api.github.com/users/jtnord/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtnord/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "description": "Jenkins Health Advisor by CloudBees proactively notifies you of problems with your Jenkins-based environment.", + "fork": true, + "url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin", + "forks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/forks", + "keys_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/teams", + "hooks_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/events", + "assignees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/tags", + "blobs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/languages", + "stargazers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/subscription", + "commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/merges", + "archive_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/downloads", + "issues_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/jtnord/cloudbees-jenkins-advisor-plugin/deployments", + "created_at": "2023-02-23T12:26:35Z", + "updated_at": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T13:42:37Z", + "git_url": "git://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "ssh_url": "git@github.com:jtnord/cloudbees-jenkins-advisor-plugin.git", + "clone_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin.git", + "svn_url": "https://github.com/jtnord/cloudbees-jenkins-advisor-plugin", + "homepage": "https://plugins.jenkins.io/cloudbees-jenkins-advisor", + "size": 6194, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "6556556832d40e575d8c236c1e8895400e71d2da", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-07-13T13:28:39Z", + "pushed_at": "2023-02-23T13:42:39Z", + "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": 6189, + "stargazers_count": 7, + "watchers_count": 7, + "language": "Java", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 22, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 22, + "open_issues": 6, + "watchers": 7, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179" + }, + "html": { + "href": "https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/pull/179" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/issues/179/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/pulls/179/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/cloudbees-jenkins-advisor-plugin/statuses/aa4a43b1476c4a39fca15a4bace06246939a03ef" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-02-23T13:58:54Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26773120026", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 138700053, + "name": "PierreBtz/audit-trail-plugin", + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin" + }, + "payload": { + "ref": "pbeitz/skip-flake", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-01-31T15:22:40Z" + }, + { + "id": "26773119562", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12461081779, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "be1bb0f1238c362c836accd83224280fd7f39364", + "before": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "commits": [ + { + "sha": "a97813beedc82c8d6436735f7467daf4824691e4", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[chore] skip flacky test on Windows", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/a97813beedc82c8d6436735f7467daf4824691e4" + }, + { + "sha": "be1bb0f1238c362c836accd83224280fd7f39364", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #103 from PierreBtz/pbeitz/skip-flake", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/be1bb0f1238c362c836accd83224280fd7f39364" + } + ] + }, + "public": true, + "created_at": "2023-01-31T15:22:40Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26773119247", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "closed", + "number": 103, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103", + "id": 1223485424, + "node_id": "PR_kwDOABHApc5I7Ofw", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103", + "number": 103, + "state": "closed", + "locked": false, + "title": "[chore] skip flacky test on Windows", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2023-01-31T15:22:32Z", + "updated_at": "2023-01-31T15:22:38Z", + "closed_at": "2023-01-31T15:22:38Z", + "merged_at": "2023-01-31T15:22:38Z", + "merge_commit_sha": "be1bb0f1238c362c836accd83224280fd7f39364", + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1682161962, + "node_id": "MDU6TGFiZWwxNjgyMTYxOTYy", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels/chore", + "name": "chore", + "color": "cc7c14", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/a97813beedc82c8d6436735f7467daf4824691e4", + "head": { + "label": "PierreBtz:pbeitz/skip-flake", + "ref": "pbeitz/skip-flake", + "sha": "a97813beedc82c8d6436735f7467daf4824691e4", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 138700053, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3MDAwNTM=", + "name": "audit-trail-plugin", + "full_name": "PierreBtz/audit-trail-plugin", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/deployments", + "created_at": "2018-06-26T07:21:38Z", + "updated_at": "2018-06-26T07:21:40Z", + "pushed_at": "2023-01-31T15:22:11Z", + "git_url": "git://github.com/PierreBtz/audit-trail-plugin.git", + "ssh_url": "git@github.com:PierreBtz/audit-trail-plugin.git", + "clone_url": "https://github.com/PierreBtz/audit-trail-plugin.git", + "svn_url": "https://github.com/PierreBtz/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 516, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T15:22:37Z", + "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": 544, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 1, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/103" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/a97813beedc82c8d6436735f7467daf4824691e4" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/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": "2023-01-31T15:22:39Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26773116715", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "opened", + "number": 103, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103", + "id": 1223485424, + "node_id": "PR_kwDOABHApc5I7Ofw", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/103.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103", + "number": 103, + "state": "open", + "locked": false, + "title": "[chore] skip flacky test on Windows", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2023-01-31T15:22:32Z", + "updated_at": "2023-01-31T15:22:33Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1682161962, + "node_id": "MDU6TGFiZWwxNjgyMTYxOTYy", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels/chore", + "name": "chore", + "color": "cc7c14", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/a97813beedc82c8d6436735f7467daf4824691e4", + "head": { + "label": "PierreBtz:pbeitz/skip-flake", + "ref": "pbeitz/skip-flake", + "sha": "a97813beedc82c8d6436735f7467daf4824691e4", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 138700053, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3MDAwNTM=", + "name": "audit-trail-plugin", + "full_name": "PierreBtz/audit-trail-plugin", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/deployments", + "created_at": "2018-06-26T07:21:38Z", + "updated_at": "2018-06-26T07:21:40Z", + "pushed_at": "2023-01-31T15:22:11Z", + "git_url": "git://github.com/PierreBtz/audit-trail-plugin.git", + "ssh_url": "git@github.com:PierreBtz/audit-trail-plugin.git", + "clone_url": "https://github.com/PierreBtz/audit-trail-plugin.git", + "svn_url": "https://github.com/PierreBtz/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 516, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T15:22:33Z", + "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": 544, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/103" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/103/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/103/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/a97813beedc82c8d6436735f7467daf4824691e4" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": true, + "commits": 1, + "additions": 4, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-01-31T15:22:33Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26773107678", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 138700053, + "name": "PierreBtz/audit-trail-plugin", + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin" + }, + "payload": { + "ref": "pbeitz/skip-flake", + "ref_type": "branch", + "master_branch": "master", + "description": "Jenkins audit-trail plugin", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-01-31T15:22:14Z" + }, + { + "id": "26771788283", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 138700053, + "name": "PierreBtz/audit-trail-plugin", + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin" + }, + "payload": { + "ref": "pbeitz/fix-gha", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-01-31T14:35:53Z" + }, + { + "id": "26771787910", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12460459458, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "before": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "commits": [ + { + "sha": "bafc2834bf788ada65b907e9158a729216ef9134", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[chore] fix cd gha", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/bafc2834bf788ada65b907e9158a729216ef9134" + }, + { + "sha": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #102 from PierreBtz/pbeitz/fix-gha", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/9eddd71ac0c36f19e514c4a95ccb5572646d9e0c" + } + ] + }, + "public": true, + "created_at": "2023-01-31T14:35:52Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26771787740", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "closed", + "number": 102, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102", + "id": 1223400412, + "node_id": "PR_kwDOABHApc5I65vc", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102", + "number": 102, + "state": "closed", + "locked": false, + "title": "[chore] fix cd gha", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2023-01-31T14:35:40Z", + "updated_at": "2023-01-31T14:35:51Z", + "closed_at": "2023-01-31T14:35:51Z", + "merged_at": "2023-01-31T14:35:50Z", + "merge_commit_sha": "9eddd71ac0c36f19e514c4a95ccb5572646d9e0c", + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1682161962, + "node_id": "MDU6TGFiZWwxNjgyMTYxOTYy", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels/chore", + "name": "chore", + "color": "cc7c14", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/bafc2834bf788ada65b907e9158a729216ef9134", + "head": { + "label": "PierreBtz:pbeitz/fix-gha", + "ref": "pbeitz/fix-gha", + "sha": "bafc2834bf788ada65b907e9158a729216ef9134", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 138700053, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3MDAwNTM=", + "name": "audit-trail-plugin", + "full_name": "PierreBtz/audit-trail-plugin", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/deployments", + "created_at": "2018-06-26T07:21:38Z", + "updated_at": "2018-06-26T07:21:40Z", + "pushed_at": "2023-01-31T14:35:22Z", + "git_url": "git://github.com/PierreBtz/audit-trail-plugin.git", + "ssh_url": "git@github.com:PierreBtz/audit-trail-plugin.git", + "clone_url": "https://github.com/PierreBtz/audit-trail-plugin.git", + "svn_url": "https://github.com/PierreBtz/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 516, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T14:35:50Z", + "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": 544, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 1, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/102" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/bafc2834bf788ada65b907e9158a729216ef9134" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 0, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-01-31T14:35:52Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26771783825", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "opened", + "number": 102, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102", + "id": 1223400412, + "node_id": "PR_kwDOABHApc5I65vc", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/102.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102", + "number": 102, + "state": "open", + "locked": false, + "title": "[chore] fix cd gha", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2023-01-31T14:35:40Z", + "updated_at": "2023-01-31T14:35:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1682161962, + "node_id": "MDU6TGFiZWwxNjgyMTYxOTYy", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels/chore", + "name": "chore", + "color": "cc7c14", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/bafc2834bf788ada65b907e9158a729216ef9134", + "head": { + "label": "PierreBtz:pbeitz/fix-gha", + "ref": "pbeitz/fix-gha", + "sha": "bafc2834bf788ada65b907e9158a729216ef9134", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 138700053, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzg3MDAwNTM=", + "name": "audit-trail-plugin", + "full_name": "PierreBtz/audit-trail-plugin", + "private": false, + "owner": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PierreBtz/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin/deployments", + "created_at": "2018-06-26T07:21:38Z", + "updated_at": "2018-06-26T07:21:40Z", + "pushed_at": "2023-01-31T14:35:22Z", + "git_url": "git://github.com/PierreBtz/audit-trail-plugin.git", + "ssh_url": "git@github.com:PierreBtz/audit-trail-plugin.git", + "clone_url": "https://github.com/PierreBtz/audit-trail-plugin.git", + "svn_url": "https://github.com/PierreBtz/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 516, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T14:35:43Z", + "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": 544, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/102" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/102/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/102/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/bafc2834bf788ada65b907e9158a729216ef9134" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": true, + "commits": 1, + "additions": 0, + "deletions": 0, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2023-01-31T14:35:43Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26771775350", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 138700053, + "name": "PierreBtz/audit-trail-plugin", + "url": "https://api.github.com/repos/PierreBtz/audit-trail-plugin" + }, + "payload": { + "ref": "pbeitz/fix-gha", + "ref_type": "branch", + "master_branch": "master", + "description": "Jenkins audit-trail plugin", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-01-31T14:35:25Z" + }, + { + "id": "26769817679", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12459520855, + "size": 14, + "distinct_size": 14, + "ref": "refs/heads/master", + "head": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "before": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "commits": [ + { + "sha": "ba9ea47e77bc884fcae242a5d64440e2a9f265d1", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Add daily rotation for LogFileAuditLogger", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/ba9ea47e77bc884fcae242a5d64440e2a9f265d1" + }, + { + "sha": "0f8d507fe3c8c26d788668fe80b89186dc426da7", + "author": { + "email": "jandreu@cloudbees.com", + "name": "Juanjo Andreu" + }, + "message": "Expanded the LogFileAuditLoggerTest with more tests and some minor typography changes in AuditTrailFilterTest", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/0f8d507fe3c8c26d788668fe80b89186dc426da7" + }, + { + "sha": "3f7782436735f499ba02d30bebf4a9693e0aed5a", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Fix SportBugs issues", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/3f7782436735f499ba02d30bebf4a9693e0aed5a" + }, + { + "sha": "ca3225f215adb9c6f91825af4c048f8a7ba02559", + "author": { + "email": "jandreu@cloudbees.com", + "name": "Juanjo Andreu" + }, + "message": "Deleted a method used only for tests, revamp tests a little to ensure testing properly in the same class as the unit test.", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/ca3225f215adb9c6f91825af4c048f8a7ba02559" + }, + { + "sha": "a5265d0239a0d6ae784af2d9b73d94f3442ef56a", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Add new test to ensure that rotation works", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/a5265d0239a0d6ae784af2d9b73d94f3442ef56a" + }, + { + "sha": "1b3f536d8751bba3a0e4fc1ffda6a9eeed138e7e", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Closing MockedStatic on each test", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/1b3f536d8751bba3a0e4fc1ffda6a9eeed138e7e" + }, + { + "sha": "0b367b00e8502c466cc12fcd84be1492c6b74355", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Address code changes from the PR review", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/0b367b00e8502c466cc12fcd84be1492c6b74355" + }, + { + "sha": "35752251c0b57bc63a5e049a17c0c1ac4bc82e3e", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Major refractor taking Pierre feedback/pair programming experience", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/35752251c0b57bc63a5e049a17c0c1ac4bc82e3e" + }, + { + "sha": "0402b92ec119392a5a9fe133a473c53911679682", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Minor changes", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/0402b92ec119392a5a9fe133a473c53911679682" + }, + { + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "More minor changes", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + }, + { + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Address feedback from PR review", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/08b1d1a6b4af44c26b83b5f868cc585136884573" + }, + { + "sha": "48b5e9329cccdd0d6fac3d8b0988cd86c3c53ed9", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge remote-tracking branch 'upstream/master' into daily-rotation", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/48b5e9329cccdd0d6fac3d8b0988cd86c3c53ed9" + }, + { + "sha": "ffedd60844f1298e35a116ffba35f161d7cb02d8", + "author": { + "email": "fbelzunc@gmail.com", + "name": "fbelzunc" + }, + "message": "Address feedback from PR", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/ffedd60844f1298e35a116ffba35f161d7cb02d8" + }, + { + "sha": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #96 from fbelzunc/daily-rotation", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/b9e0b9c1a3fe5eff0ec258137d02fe88328d5035" + } + ] + }, + "public": true, + "created_at": "2023-01-31T13:21:39Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26769817490", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "closed", + "number": 96, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "closed", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T13:21:37Z", + "closed_at": "2023-01-31T13:21:37Z", + "merged_at": "2023-01-31T13:21:37Z", + "merge_commit_sha": "b9e0b9c1a3fe5eff0ec258137d02fe88328d5035", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/ffedd60844f1298e35a116ffba35f161d7cb02d8", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "ffedd60844f1298e35a116ffba35f161d7cb02d8", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T12:12:34Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 542, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T13:21:37Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 1, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/ffedd60844f1298e35a116ffba35f161d7cb02d8" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 5, + "review_comments": 17, + "maintainer_can_modify": false, + "commits": 13, + "additions": 491, + "deletions": 117, + "changed_files": 10 + } + }, + "public": true, + "created_at": "2023-01-31T13:21:38Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26766205341", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 539839949, + "name": "fbelzunc/audit-trail-plugin", + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin" + }, + "payload": { + "push_id": 12457752366, + "size": 7, + "distinct_size": 7, + "ref": "refs/heads/daily-rotation", + "head": "48b5e9329cccdd0d6fac3d8b0988cd86c3c53ed9", + "before": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "commits": [ + { + "sha": "8c0fccc7bd0f33941b95ea330978f0db19ded4a8", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "[JENKINS-70313] Update the doc to reflect the current behavior of the plugin", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/8c0fccc7bd0f33941b95ea330978f0db19ded4a8" + }, + { + "sha": "ba116f0a2a47d62ee93bddd7c0c44c15dd123e86", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #100 from jenkinsci/PierreBtz-patch-1", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/ba116f0a2a47d62ee93bddd7c0c44c15dd123e86" + }, + { + "sha": "011e37643be88235af68fc9ea1b67a00d0241c91", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Bump minimal Jenkins version to 2.361.1", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/011e37643be88235af68fc9ea1b67a00d0241c91" + }, + { + "sha": "6ed85073af7d3253ed941f7d23539de38551c124", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Specify target jdks (also add 17 to check in advance for potential issues).", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/6ed85073af7d3253ed941f7d23539de38551c124" + }, + { + "sha": "01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Replace unsupported tt tags with code", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/01c9283a6ee5770d8b10567da5d67ceae0e67b73" + }, + { + "sha": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #101 from jenkinsci/PierreBtz-patch-1\n\nBump minimal Jenkins version to 2.361.1", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/83ffd0d99aeab297c3da748bd92031d06842dbc4" + }, + { + "sha": "48b5e9329cccdd0d6fac3d8b0988cd86c3c53ed9", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge remote-tracking branch 'upstream/master' into daily-rotation", + "distinct": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits/48b5e9329cccdd0d6fac3d8b0988cd86c3c53ed9" + } + ] + }, + "public": true, + "created_at": "2023-01-31T10:49:09Z" + }, + { + "id": "26766086691", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748795", + "pull_request_review_id": 1276920961, + "id": 1091748795, + "node_id": "PRRC_kwDOABHApc5BEsO7", + "diff_hunk": "@@ -1,147 +1,54 @@\n package hudson.plugins.audit_trail;\n \n import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n-import hudson.EnvVars;\n import hudson.Extension;\n-import hudson.Util;\n import hudson.model.Descriptor;\n import org.kohsuke.stapler.DataBoundConstructor;\n \n-import javax.annotation.Nonnull;\n-import java.io.File;\n import java.io.IOException;\n-import java.nio.file.NoSuchFileException;\n-import java.text.SimpleDateFormat;\n-import java.util.Date;\n-import java.util.Optional;\n import java.util.logging.FileHandler;\n-import java.util.logging.Formatter;\n-import java.util.logging.Level;\n-import java.util.logging.LogRecord;\n-import java.util.logging.Logger;\n-\n-import static java.util.logging.Level.CONFIG;\n \n /**\n * @author Nicolas De Loof\n * @author Pierre Beitz\n */\n-public class LogFileAuditLogger extends AuditLogger {\n-\n- private static final Logger LOGGER = Logger.getLogger(LogFileAuditLogger.class.getName());\n- static final String DEFAULT_LOG_SEPARATOR=\" \";\n- @Nonnull\n- private String logSeparator;\n+public class LogFileAuditLogger extends AbstractLogFileAuditLogger {\n \n- private transient FileHandler handler;\n+ private int limit = 1;\n \n @DataBoundConstructor\n public LogFileAuditLogger(String log, int limit, int count, String logSeparator) {\n- this.log = Util.replaceMacro(log, EnvVars.masterEnvVars);\n+ super(log, count, logSeparator);\n this.limit = limit;\n- this.count = count;\n- this.logSeparator = Optional.ofNullable(logSeparator).orElse(DEFAULT_LOG_SEPARATOR);\n configure();\n }\n \n @SuppressFBWarnings(\n- value=\"RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE\",\n+ value = \"RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE\",\n justification = \"value can be null if no config file exists\")\n- private Object readResolve() {\n- if(logSeparator == null) {\n- logSeparator = DEFAULT_LOG_SEPARATOR;\n- }\n+ Object readResolve() {\n+ super.readResolve();\n configure();\n return this;\n }\n \n @Override\n- public void log(String event) {\n- if (handler == null) return;\n- handler.publish(new LogRecord(CONFIG, event));\n+ FileHandler getLogFileHandler() throws IOException {\n+ return new FileHandler(getLog(), getLimit() * 1024 * 1024, getCount(), true);\n }\n \n- private String log;\n- private int limit = 1;\n- private int count = 1;\n-\n- public String getLog() { return log; }\n-\n- public int getLimit() { return limit; }\n-\n- public int getCount() { return count; }\n-\n- @Nonnull\n- public String getLogSeparator() {\n- return logSeparator;\n+ public int getLimit() {\n+ return limit;\n }\n \n @Override\n public boolean equals(Object o) {\n- if (this == o) return true;\n- if (!(o instanceof LogFileAuditLogger)) return false;\n-\n- LogFileAuditLogger that = (LogFileAuditLogger) o;\n-\n- if (count != that.count) return false;\n- if (limit != that.limit) return false;\n- if (!logSeparator.equals(that.logSeparator)) return false;\n- if (log != null ? !log.equals(that.log) : that.log != null) return false;\n-\n- return true;\n+ return super.equals(o);", + "path": "src/main/java/hudson/plugins/audit_trail/LogFileAuditLogger.java", + "position": 102, + "original_position": 102, + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "original_commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "ditto", + "created_at": "2023-01-31T10:43:04Z", + "updated_at": "2023-01-31T10:44:02Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748795", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748795" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748795" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748795/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 46, + "original_line": 46, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:43:04Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-9.json new file mode 100644 index 0000000000..647ba93441 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/user_9881659_events_public-9.json @@ -0,0 +1,5525 @@ +[ + { + "id": "26766086665", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748559", + "pull_request_review_id": 1276920961, + "id": 1091748559, + "node_id": "PRRC_kwDOABHApc5BEsLP", + "diff_hunk": "@@ -0,0 +1,172 @@\n+package hudson.plugins.audit_trail;\n+\n+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n+import hudson.Extension;\n+import hudson.model.Descriptor;\n+import org.apache.commons.io.FileUtils;\n+import org.apache.commons.io.FilenameUtils;\n+import org.apache.commons.io.filefilter.DirectoryFileFilter;\n+import org.apache.commons.io.filefilter.RegexFileFilter;\n+import org.kohsuke.stapler.DataBoundConstructor;\n+\n+import java.io.File;\n+import java.io.IOException;\n+import java.nio.file.Path;\n+import java.nio.file.Paths;\n+import java.time.Duration;\n+import java.time.Instant;\n+import java.time.ZoneId;\n+import java.time.ZonedDateTime;\n+import java.time.format.DateTimeFormatter;\n+import java.time.temporal.ChronoUnit;\n+import java.util.Collection;\n+import java.util.List;\n+import java.util.logging.FileHandler;\n+import java.util.logging.Level;\n+import java.util.logging.Logger;\n+import java.util.regex.Matcher;\n+import java.util.regex.Pattern;\n+import java.util.stream.Collectors;\n+\n+import static org.apache.commons.io.comparator.LastModifiedFileComparator.LASTMODIFIED_REVERSE;\n+\n+public class LogFileDailyRotationAuditLogger extends AbstractLogFileAuditLogger {\n+\n+ private static final Logger LOGGER = Logger.getLogger(LogFileDailyRotationAuditLogger.class.getName());\n+ static final String DAILY_ROTATING_FILE_REGEX_PATTERN = \"-[0-9]{4}-[0-9]{2}-[0-9]{2}\" + \".*\" + \"(? files = FileUtils.listFiles(new File(directoryPath.toString()), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > 0) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ File lastFile = orderedList.get(0);\n+ Matcher matcher = Pattern.compile(\"[0-9]{4}-[0-9]{2}-[0-9]{2}\").matcher(lastFile.getName());\n+ if (matcher.find()) {\n+ // Initialize initInstant with the date saved on the audit file name\n+ // See example https://stackoverflow.com/questions/14385834/java-regex-group-0\n+ initInstant = Instant.parse(matcher.group(0) + \"T00:00:00.00Z\").atZone(ZoneId.systemDefault());\n+ }\n+ }\n+ }\n+ // Initialize initInstant to the current instant\n+ if (initInstant == null) {\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ }\n+ configure();\n+ }\n+\n+ String computePattern() {\n+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern(\"yyyy-MM-dd\").withZone(ZoneId.systemDefault());\n+ String formattedInstant = formatter.format(initInstant);\n+ String computedFileName = String.format(\"%s-%s\", FilenameUtils.getName(basePattern.toString()) , formattedInstant);\n+ Path parentFolder = basePattern.getParent();\n+ if (parentFolder != null) {\n+ return parentFolder.resolve(computedFileName).toString();\n+ }\n+ return computedFileName;\n+ }\n+\n+ private boolean shouldRotate() {\n+ return ZonedDateTime.now().isAfter(initInstant.plus(Duration.ofDays(1)));\n+ }\n+\n+ /**\n+ * Rotates the daily rotation logger\n+ */\n+ private void rotate() {\n+ if (getHandler() != null) {\n+ getHandler().close();\n+ }\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ configure();\n+ // After rotating remove old files\n+ removeOldFiles();\n+ }\n+\n+ private void removeOldFiles() {\n+ Path directoryPath = basePattern.getParent();\n+ if (directoryPath != null) {\n+ Collection files = FileUtils.listFiles(directoryPath.toFile(), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > getCount()) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ List toDelete = orderedList.subList(getCount(), orderedList.size());\n+ for (File file : toDelete) {\n+ if (!file.delete()) {\n+ LOGGER.log(Level.SEVERE, \"File {0} could not be removed on rotate overation\", file.getName());\n+ }\n+ }\n+ }\n+ }\n+ }\n+\n+ @Override\n+ public void log(String event) {\n+ // to avoid synchronizing the whole method\n+ if (shouldRotate()) {\n+ synchronized (this) {\n+ if (shouldRotate()) rotate();\n+ }\n+ }\n+ super.log(event);\n+ }\n+\n+ @Override\n+ public boolean equals(Object o) {", + "path": "src/main/java/hudson/plugins/audit_trail/LogFileDailyRotationAuditLogger.java", + "position": 155, + "original_position": 155, + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "original_commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "This is implicit in Java. Perhaps you wanted to add the `initInstant` to the comparison?", + "created_at": "2023-01-31T10:42:50Z", + "updated_at": "2023-01-31T10:44:02Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748559", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748559" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748559" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748559/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 155, + "original_line": 155, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:42:50Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26766086677", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748676", + "pull_request_review_id": 1276920961, + "id": 1091748676, + "node_id": "PRRC_kwDOABHApc5BEsNE", + "diff_hunk": "@@ -0,0 +1,172 @@\n+package hudson.plugins.audit_trail;\n+\n+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n+import hudson.Extension;\n+import hudson.model.Descriptor;\n+import org.apache.commons.io.FileUtils;\n+import org.apache.commons.io.FilenameUtils;\n+import org.apache.commons.io.filefilter.DirectoryFileFilter;\n+import org.apache.commons.io.filefilter.RegexFileFilter;\n+import org.kohsuke.stapler.DataBoundConstructor;\n+\n+import java.io.File;\n+import java.io.IOException;\n+import java.nio.file.Path;\n+import java.nio.file.Paths;\n+import java.time.Duration;\n+import java.time.Instant;\n+import java.time.ZoneId;\n+import java.time.ZonedDateTime;\n+import java.time.format.DateTimeFormatter;\n+import java.time.temporal.ChronoUnit;\n+import java.util.Collection;\n+import java.util.List;\n+import java.util.logging.FileHandler;\n+import java.util.logging.Level;\n+import java.util.logging.Logger;\n+import java.util.regex.Matcher;\n+import java.util.regex.Pattern;\n+import java.util.stream.Collectors;\n+\n+import static org.apache.commons.io.comparator.LastModifiedFileComparator.LASTMODIFIED_REVERSE;\n+\n+public class LogFileDailyRotationAuditLogger extends AbstractLogFileAuditLogger {\n+\n+ private static final Logger LOGGER = Logger.getLogger(LogFileDailyRotationAuditLogger.class.getName());\n+ static final String DAILY_ROTATING_FILE_REGEX_PATTERN = \"-[0-9]{4}-[0-9]{2}-[0-9]{2}\" + \".*\" + \"(? files = FileUtils.listFiles(new File(directoryPath.toString()), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > 0) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ File lastFile = orderedList.get(0);\n+ Matcher matcher = Pattern.compile(\"[0-9]{4}-[0-9]{2}-[0-9]{2}\").matcher(lastFile.getName());\n+ if (matcher.find()) {\n+ // Initialize initInstant with the date saved on the audit file name\n+ // See example https://stackoverflow.com/questions/14385834/java-regex-group-0\n+ initInstant = Instant.parse(matcher.group(0) + \"T00:00:00.00Z\").atZone(ZoneId.systemDefault());\n+ }\n+ }\n+ }\n+ // Initialize initInstant to the current instant\n+ if (initInstant == null) {\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ }\n+ configure();\n+ }\n+\n+ String computePattern() {\n+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern(\"yyyy-MM-dd\").withZone(ZoneId.systemDefault());\n+ String formattedInstant = formatter.format(initInstant);\n+ String computedFileName = String.format(\"%s-%s\", FilenameUtils.getName(basePattern.toString()) , formattedInstant);\n+ Path parentFolder = basePattern.getParent();\n+ if (parentFolder != null) {\n+ return parentFolder.resolve(computedFileName).toString();\n+ }\n+ return computedFileName;\n+ }\n+\n+ private boolean shouldRotate() {\n+ return ZonedDateTime.now().isAfter(initInstant.plus(Duration.ofDays(1)));\n+ }\n+\n+ /**\n+ * Rotates the daily rotation logger\n+ */\n+ private void rotate() {\n+ if (getHandler() != null) {\n+ getHandler().close();\n+ }\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ configure();\n+ // After rotating remove old files\n+ removeOldFiles();\n+ }\n+\n+ private void removeOldFiles() {\n+ Path directoryPath = basePattern.getParent();\n+ if (directoryPath != null) {\n+ Collection files = FileUtils.listFiles(directoryPath.toFile(), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > getCount()) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ List toDelete = orderedList.subList(getCount(), orderedList.size());\n+ for (File file : toDelete) {\n+ if (!file.delete()) {\n+ LOGGER.log(Level.SEVERE, \"File {0} could not be removed on rotate overation\", file.getName());\n+ }\n+ }\n+ }\n+ }\n+ }\n+\n+ @Override\n+ public void log(String event) {\n+ // to avoid synchronizing the whole method\n+ if (shouldRotate()) {\n+ synchronized (this) {\n+ if (shouldRotate()) rotate();\n+ }\n+ }\n+ super.log(event);\n+ }\n+\n+ @Override\n+ public boolean equals(Object o) {\n+ return super.equals(o);\n+ }\n+\n+ @Override\n+ public int hashCode() {", + "path": "src/main/java/hudson/plugins/audit_trail/LogFileDailyRotationAuditLogger.java", + "position": 160, + "original_position": 160, + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "original_commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "ditto", + "created_at": "2023-01-31T10:42:56Z", + "updated_at": "2023-01-31T10:44:02Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748676", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748676" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748676" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748676/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 160, + "original_line": 160, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:42:56Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26766086658", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748885", + "pull_request_review_id": 1276920961, + "id": 1091748885, + "node_id": "PRRC_kwDOABHApc5BEsQV", + "diff_hunk": "@@ -1,147 +1,54 @@\n package hudson.plugins.audit_trail;\n \n import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n-import hudson.EnvVars;\n import hudson.Extension;\n-import hudson.Util;\n import hudson.model.Descriptor;\n import org.kohsuke.stapler.DataBoundConstructor;\n \n-import javax.annotation.Nonnull;\n-import java.io.File;\n import java.io.IOException;\n-import java.nio.file.NoSuchFileException;\n-import java.text.SimpleDateFormat;\n-import java.util.Date;\n-import java.util.Optional;\n import java.util.logging.FileHandler;\n-import java.util.logging.Formatter;\n-import java.util.logging.Level;\n-import java.util.logging.LogRecord;\n-import java.util.logging.Logger;\n-\n-import static java.util.logging.Level.CONFIG;\n \n /**\n * @author Nicolas De Loof\n * @author Pierre Beitz\n */\n-public class LogFileAuditLogger extends AuditLogger {\n-\n- private static final Logger LOGGER = Logger.getLogger(LogFileAuditLogger.class.getName());\n- static final String DEFAULT_LOG_SEPARATOR=\" \";\n- @Nonnull\n- private String logSeparator;\n+public class LogFileAuditLogger extends AbstractLogFileAuditLogger {\n \n- private transient FileHandler handler;\n+ private int limit = 1;\n \n @DataBoundConstructor\n public LogFileAuditLogger(String log, int limit, int count, String logSeparator) {\n- this.log = Util.replaceMacro(log, EnvVars.masterEnvVars);\n+ super(log, count, logSeparator);\n this.limit = limit;\n- this.count = count;\n- this.logSeparator = Optional.ofNullable(logSeparator).orElse(DEFAULT_LOG_SEPARATOR);\n configure();\n }\n \n @SuppressFBWarnings(\n- value=\"RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE\",\n+ value = \"RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE\",\n justification = \"value can be null if no config file exists\")\n- private Object readResolve() {\n- if(logSeparator == null) {\n- logSeparator = DEFAULT_LOG_SEPARATOR;\n- }\n+ Object readResolve() {\n+ super.readResolve();\n configure();\n return this;\n }\n \n @Override\n- public void log(String event) {\n- if (handler == null) return;\n- handler.publish(new LogRecord(CONFIG, event));\n+ FileHandler getLogFileHandler() throws IOException {\n+ return new FileHandler(getLog(), getLimit() * 1024 * 1024, getCount(), true);\n }\n \n- private String log;\n- private int limit = 1;\n- private int count = 1;\n-\n- public String getLog() { return log; }\n-\n- public int getLimit() { return limit; }\n-\n- public int getCount() { return count; }\n-\n- @Nonnull\n- public String getLogSeparator() {\n- return logSeparator;\n+ public int getLimit() {\n+ return limit;\n }\n \n @Override\n public boolean equals(Object o) {\n- if (this == o) return true;\n- if (!(o instanceof LogFileAuditLogger)) return false;\n-\n- LogFileAuditLogger that = (LogFileAuditLogger) o;\n-\n- if (count != that.count) return false;\n- if (limit != that.limit) return false;\n- if (!logSeparator.equals(that.logSeparator)) return false;\n- if (log != null ? !log.equals(that.log) : that.log != null) return false;\n-\n- return true;\n+ return super.equals(o);\n }\n \n @Override\n public int hashCode() {\n- int result = log != null ? log.hashCode() : 0;\n- result = 31 * result + limit;\n- result = 31 * result + count;\n- result = 31 * result + logSeparator.hashCode();\n- return result;\n- }\n-\n- private void configure() {\n- // looks like https://bugs.java.com/bugdatabase/view_bug.do?bug_id=6244047 is somehow still there\n- // there is no way for us to know before hand what path we are looking to create as it would\n- // mean having access to FileHandler#generate so either reflexion or catching the exception and retrieving\n- // the path. Let's go with number 2.\n- try {\n- FileHandler h = null;\n- try {\n- h = new FileHandler(log, limit * 1024 * 1024, count, true);\n- } catch (NoSuchFileException ex) {\n- LOGGER.info(\"Couldn't create the file handler lock file, forcing creation of intermediate directories\");\n- String lockFileName = ex.getFile();\n- boolean mkdirs = new File(lockFileName).getParentFile().mkdirs();\n- if (mkdirs) {\n- h = new FileHandler(log, limit * 1024 * 1024, count, true);\n- }\n- }\n- if (h != null) {\n- h.setFormatter(new Formatter() {\n- SimpleDateFormat dateFormat = new SimpleDateFormat(\"MMM d, yyyy h:mm:ss,SSS aa\");\n-\n- @Override\n- public synchronized String format(LogRecord record) {\n- return dateFormat.format(new Date(record.getMillis())) + getLogSeparator()\n- + record.getMessage() + '\\n';\n- }\n- });\n- h.setLevel(CONFIG);\n- handler = h;\n- } else {\n- LOGGER.severe(\"Couldn't configure the plugin, as the file handler wasn't successfully created. You should report this issue\");\n- }\n- } catch (IOException ex) {\n- LOGGER.log(Level.SEVERE, \"Couldn't configure the plugin, you should report this issue\", ex);\n- }\n- }\n-\n- @Override\n- public void cleanUp() throws SecurityException {\n- if(handler != null) {\n- handler.close();\n- }\n+ return super.hashCode();", + "path": "src/main/java/hudson/plugins/audit_trail/LogFileAuditLogger.java", + "position": 156, + "original_position": 156, + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "original_commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "ditto", + "created_at": "2023-01-31T10:43:08Z", + "updated_at": "2023-01-31T10:44:02Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748885", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748885" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1091748885" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1091748885/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 51, + "original_line": 51, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:43:08Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26766086575", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1276920961, + "node_id": "PRR_kwDOABHApc5MHESB", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks for the contribution, I'll refresh your branch onto the master branch (since it was bumped to java 11) to perform some testing on it.", + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "submitted_at": "2023-01-31T10:44:02Z", + "state": "approved", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1276920961", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1276920961" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:44:03Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26766086513", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1276920961, + "node_id": "PRR_kwDOABHApc5MHESB", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "lgtm, thanks for the contribution, I'll refresh your branch onto the master branch (since it was bumped to java 11) to perform some testing on it.", + "commit_id": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "submitted_at": "2023-01-31T10:44:02Z", + "state": "approved", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1276920961", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1276920961" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-31T10:44:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d77b47123b0afb97df321d270f29bf9b4667a2af", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "08b1d1a6b4af44c26b83b5f868cc585136884573", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-31T09:41:38Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 530, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2023-01-30T10:38:51Z", + "pushed_at": "2023-01-31T09:41:40Z", + "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": 505, + "stargazers_count": 18, + "watchers_count": 18, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 2, + "watchers": 18, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/08b1d1a6b4af44c26b83b5f868cc585136884573" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-31T10:44:03Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737667831", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12444016712, + "size": 4, + "distinct_size": 4, + "ref": "refs/heads/master", + "head": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "before": "ba116f0a2a47d62ee93bddd7c0c44c15dd123e86", + "commits": [ + { + "sha": "011e37643be88235af68fc9ea1b67a00d0241c91", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Bump minimal Jenkins version to 2.361.1", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/011e37643be88235af68fc9ea1b67a00d0241c91" + }, + { + "sha": "6ed85073af7d3253ed941f7d23539de38551c124", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Specify target jdks (also add 17 to check in advance for potential issues).", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/6ed85073af7d3253ed941f7d23539de38551c124" + }, + { + "sha": "01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Replace unsupported tt tags with code", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/01c9283a6ee5770d8b10567da5d67ceae0e67b73" + }, + { + "sha": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Merge pull request #101 from jenkinsci/PierreBtz-patch-1\n\nBump minimal Jenkins version to 2.361.1", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/83ffd0d99aeab297c3da748bd92031d06842dbc4" + } + ] + }, + "public": true, + "created_at": "2023-01-30T10:37:17Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737667760", + "type": "DeleteEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "ref": "PierreBtz-patch-1", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-01-30T10:37:17Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737667597", + "type": "PullRequestEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "closed", + "number": 101, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101", + "id": 1183641728, + "node_id": "PR_kwDOABHApc5GjPCA", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/101", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/101.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/101.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/101", + "number": 101, + "state": "closed", + "locked": false, + "title": "Bump minimal Jenkins version to 2.361.1", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "\r\n\r\n- [ ] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [ ] Ensure that the pull request title represents the desired changelog entry\r\n- [ ] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [ ] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2023-01-03T15:44:42Z", + "updated_at": "2023-01-30T10:37:16Z", + "closed_at": "2023-01-30T10:37:16Z", + "merged_at": "2023-01-30T10:37:15Z", + "merge_commit_sha": "83ffd0d99aeab297c3da748bd92031d06842dbc4", + "assignee": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 1682161962, + "node_id": "MDU6TGFiZWwxNjgyMTYxOTYy", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/labels/chore", + "name": "chore", + "color": "cc7c14", + "default": false, + "description": "" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/101/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "head": { + "label": "jenkinsci:PierreBtz-patch-1", + "ref": "PierreBtz-patch-1", + "sha": "01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T10:37:15Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 3, + "watchers": 17, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "ba116f0a2a47d62ee93bddd7c0c44c15dd123e86", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T10:37:15Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 3, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/101" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/101" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/101/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/101/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/01c9283a6ee5770d8b10567da5d67ceae0e67b73" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": true, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 3, + "additions": 18, + "deletions": 11, + "changed_files": 5 + } + }, + "public": true, + "created_at": "2023-01-30T10:37:17Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737319942", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090430884", + "pull_request_review_id": 1274870415, + "id": 1090430884, + "node_id": "PRRC_kwDOABHApc5A_qek", + "diff_hunk": "@@ -0,0 +1,8 @@\n+
    \n+ Full path for log location and filename. May contain FileHandler pattern tokens, such as %g for a number", + "path": "src/main/resources/hudson/plugins/audit_trail/LogFileDailyRotationAuditLogger/help-log.html", + "position": 4, + "original_position": 4, + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "original_commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "This tag needs to be changed as in https://github.com/jenkinsci/audit-trail-plugin/pull/101 (jdk 11 isn't compatible anymore with the deprecated tt tag):\r\n\r\n```suggestion\r\n >FileHandler pattern tokens, such as %g for a number\r\n```", + "created_at": "2023-01-30T10:23:31Z", + "updated_at": "2023-01-30T10:23:32Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090430884", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090430884" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090430884" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090430884/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 4, + "original_line": 4, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:23:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T10:22:22Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:23:31Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737319903", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1274870415, + "node_id": "PRR_kwDOABHApc5L_PqP", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "submitted_at": "2023-01-30T10:23:32Z", + "state": "commented", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274870415", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274870415" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:23:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T10:22:22Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:23:32Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737288201", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12443836975, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/PierreBtz-patch-1", + "head": "01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "before": "6ed85073af7d3253ed941f7d23539de38551c124", + "commits": [ + { + "sha": "01c9283a6ee5770d8b10567da5d67ceae0e67b73", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Replace unsupported tt tags with code", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/01c9283a6ee5770d8b10567da5d67ceae0e67b73" + } + ] + }, + "public": true, + "created_at": "2023-01-30T10:22:20Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737157600", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090421259", + "pull_request_review_id": 1274844118, + "id": 1090421259, + "node_id": "PRRC_kwDOABHApc5A_oIL", + "diff_hunk": "@@ -0,0 +1,180 @@\n+package hudson.plugins.audit_trail;\n+\n+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n+import hudson.Extension;\n+import hudson.model.Descriptor;\n+import org.apache.commons.io.FileUtils;\n+import org.apache.commons.io.FilenameUtils;\n+import org.apache.commons.io.filefilter.DirectoryFileFilter;\n+import org.apache.commons.io.filefilter.RegexFileFilter;\n+import org.kohsuke.stapler.DataBoundConstructor;\n+\n+import java.io.File;\n+import java.io.IOException;\n+import java.nio.file.Path;\n+import java.nio.file.Paths;\n+import java.time.Duration;\n+import java.time.Instant;\n+import java.time.ZoneId;\n+import java.time.ZonedDateTime;\n+import java.time.format.DateTimeFormatter;\n+import java.time.temporal.ChronoUnit;\n+import java.util.Collection;\n+import java.util.List;\n+import java.util.logging.FileHandler;\n+import java.util.logging.Level;\n+import java.util.logging.Logger;\n+import java.util.regex.Matcher;\n+import java.util.regex.Pattern;\n+import java.util.stream.Collectors;\n+\n+import static org.apache.commons.io.comparator.LastModifiedFileComparator.LASTMODIFIED_REVERSE;\n+\n+public class LogFileDailyRotationAuditLogger extends AbstractLogFileAuditLogger {\n+\n+ private static final Logger LOGGER = Logger.getLogger(LogFileDailyRotationAuditLogger.class.getName());\n+ static final String DAILY_ROTATING_FILE_REGEX_PATTERN = \"-[0-9]{4}-[0-9]{2}-[0-9]{2}\" + \".*\" + \"(? files = FileUtils.listFiles(new File(directoryPath.toString()), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > 0) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ File lastFile = orderedList.get(0);\n+ Matcher matcher = Pattern.compile(\"[0-9]{4}-[0-9]{2}-[0-9]{2}\").matcher(lastFile.getName());\n+ if (matcher.find()) {\n+ // Initialize initInstant with the date saved on the audit file name\n+ // See example https://stackoverflow.com/questions/14385834/java-regex-group-0\n+ initInstant = Instant.parse(matcher.group(0) + \"T00:00:00.00Z\").atZone(ZoneId.systemDefault());\n+ }\n+ }\n+ }\n+ // Initialize initInstant to the current instant\n+ if (initInstant == null) {\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ }\n+ configure();\n+ }\n+\n+ String computePattern() {\n+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern(\"yyyy-MM-dd\").withZone(ZoneId.systemDefault());\n+ String formattedInstant = formatter.format(initInstant);\n+ String computedFileName = String.format(\"%s-%s\", FilenameUtils.getName(basePattern.toString()) , formattedInstant);\n+ Path parentFolder = basePattern.getParent();\n+ if (parentFolder != null) {\n+ return parentFolder.resolve(computedFileName).toString();\n+ }\n+ return computedFileName;\n+ }\n+\n+ private boolean shouldRotate() {\n+ return ZonedDateTime.now().isAfter(initInstant.plus(Duration.ofDays(1)));\n+ }\n+\n+ /**\n+ * Rotates the daily rotation logger\n+ */\n+ private void rotate() {\n+ if (getHandler() != null) {\n+ getHandler().close();\n+ }\n+ initInstant = ZonedDateTime.now().truncatedTo(ChronoUnit.DAYS);\n+ configure();\n+ // After rotating remove old files\n+ removeOldFiles();\n+ }\n+\n+ private void removeOldFiles() {\n+ Path directoryPath = basePattern.getParent();\n+ if (directoryPath != null) {\n+ Collection files = FileUtils.listFiles(directoryPath.toFile(), new RegexFileFilter(\".*\" + FilenameUtils.getName(basePattern.toString()) + DAILY_ROTATING_FILE_REGEX_PATTERN), DirectoryFileFilter.DIRECTORY);\n+ if (files.size() > getCount()) {\n+ List orderedList = files.stream().sorted(LASTMODIFIED_REVERSE).collect(Collectors.toList());\n+ List toDelete = orderedList.subList(getCount(), orderedList.size());\n+ for (File file : toDelete) {\n+ if (!file.delete()) {\n+ LOGGER.log(Level.SEVERE, \"File {0} could not be removed on rotate overation\", file.getName());\n+ }\n+ }\n+ }\n+ }\n+ }\n+\n+ @Override\n+ public void log(String event) {\n+ // to avoid synchronizing the whole method\n+ if (shouldRotate()) {\n+ synchronized (this) {\n+ if (shouldRotate()) rotate();\n+ }\n+ }\n+ super.log(event);\n+ }\n+\n+ @Override\n+ public boolean equals(Object o) {\n+ if (this == o) return true;\n+ if (o == null || getClass() != o.getClass()) return false;\n+\n+ LogFileDailyRotationAuditLogger that = (LogFileDailyRotationAuditLogger) o;\n+\n+ if (initInstant != null ? !initInstant.equals(that.initInstant) : that.initInstant != null) return false;", + "path": "src/main/java/hudson/plugins/audit_trail/LogFileDailyRotationAuditLogger.java", + "position": 161, + "original_position": 161, + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "original_commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "The `equals` doesn't take into account the fields of the super class.\r\nFor instance that means that the plugin would consider two different loggers configured with a different `separator` as equals (since the `separator` field is configured in the super). I'm not sure it would cause a bug currently since IIRC we only push the loggers in a list, but it could be cause for subtle bugs in the future (if we add a feature needing to compare loggers, or we store them in a `Set` for instance).\r\n\r\nI'd suggest:\r\n* in this class: call the super (same in `LogFileAuditLogger`), and same for the hashcode.\r\n* in the super class generate equals and hashcode (let your IDE do it).", + "created_at": "2023-01-30T10:14:42Z", + "updated_at": "2023-01-30T10:17:21Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090421259", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090421259" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090421259" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090421259/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 161, + "original_line": 161, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:17:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T09:58:32Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:14:42Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737157491", + "type": "PullRequestReviewCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090413586", + "pull_request_review_id": 1274844118, + "id": 1090413586, + "node_id": "PRRC_kwDOABHApc5A_mQS", + "diff_hunk": "@@ -0,0 +1,124 @@\n+package hudson.plugins.audit_trail;\n+\n+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;\n+import hudson.EnvVars;\n+import hudson.Util;\n+\n+import javax.annotation.Nonnull;\n+import java.io.File;\n+import java.io.IOException;\n+import java.nio.file.NoSuchFileException;\n+import java.text.SimpleDateFormat;\n+import java.util.Date;\n+import java.util.Optional;\n+import java.util.logging.FileHandler;\n+import java.util.logging.Formatter;\n+import java.util.logging.Level;\n+import java.util.logging.LogRecord;\n+import java.util.logging.Logger;\n+\n+import static java.util.logging.Level.CONFIG;\n+\n+public abstract class AbstractLogFileAuditLogger extends AuditLogger {\n+\n+ private static final Logger LOGGER = Logger.getLogger(AbstractLogFileAuditLogger.class.getName());\n+ static final String DEFAULT_LOG_SEPARATOR =\" \";\n+\n+ @Nonnull\n+ private String logSeparator;\n+ private String log;\n+ private int count = 1;\n+ private int limit = 1;", + "path": "src/main/java/hudson/plugins/audit_trail/AbstractLogFileAuditLogger.java", + "position": 31, + "original_position": 31, + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "original_commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Limit is never used in `AbstractLogFileAuditLogger` and in `LogFileDailyRotationAuditLogger`, it's purely code pertaining to `LogFileAuditLogger`, it shouldn't appear elsewhere.", + "created_at": "2023-01-30T10:08:02Z", + "updated_at": "2023-01-30T10:17:21Z", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090413586", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090413586" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#discussion_r1090413586" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + }, + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments/1090413586/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 31, + "original_line": 31, + "side": "RIGHT" + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:17:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T09:58:32Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:08:02Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737157478", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1274844118, + "node_id": "PRR_kwDOABHApc5L_JPW", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Thanks for taking my suggestion into account! I think we are almost there, I'd like at least the equals/hashcode issue fixed since it's a potential bug.", + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "submitted_at": "2023-01-30T10:17:21Z", + "state": "changes_requested", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274844118", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274844118" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:17:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T09:58:32Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:17:22Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26737157379", + "type": "PullRequestReviewEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "review": { + "id": 1274844118, + "node_id": "PRR_kwDOABHApc5L_JPW", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "body": "Thanks for taking my suggestion into account! I think we are almost there, I'd like at least the equals/hashcode issue fixed since it's a potential bug.", + "commit_id": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "submitted_at": "2023-01-30T10:17:21Z", + "state": "changes_requested", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274844118", + "pull_request_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "author_association": "CONTRIBUTOR", + "_links": { + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#pullrequestreview-1274844118" + }, + "pull_request": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + } + } + }, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "id": 1166633695, + "node_id": "PR_kwDOABHApc5FiWrf", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "number": 96, + "state": "open", + "locked": false, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-30T10:17:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "eea7c192fecdbb91e263890a7c5ca0610ea8245d", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits", + "review_comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments", + "review_comment_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "statuses_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "head": { + "label": "fbelzunc:daily-rotation", + "ref": "daily-rotation", + "sha": "b65dc6cb57e438ebae7e372c812c498a32d9e9f0", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 539839949, + "node_id": "R_kgDOIC1NzQ", + "name": "audit-trail-plugin", + "full_name": "fbelzunc/audit-trail-plugin", + "private": false, + "owner": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/fbelzunc/audit-trail-plugin", + "description": "Jenkins audit-trail plugin", + "fork": true, + "url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin", + "forks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/forks", + "keys_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/teams", + "hooks_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/hooks", + "issue_events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/events{/number}", + "events_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/events", + "assignees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/assignees{/user}", + "branches_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/branches{/branch}", + "tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/tags", + "blobs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/statuses/{sha}", + "languages_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/languages", + "stargazers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/stargazers", + "contributors_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contributors", + "subscribers_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscribers", + "subscription_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/subscription", + "commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/contents/{+path}", + "compare_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/merges", + "archive_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/downloads", + "issues_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/issues{/number}", + "pulls_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/pulls{/number}", + "milestones_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/milestones{/number}", + "notifications_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/labels{/name}", + "releases_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/releases{/id}", + "deployments_url": "https://api.github.com/repos/fbelzunc/audit-trail-plugin/deployments", + "created_at": "2022-09-22T06:51:59Z", + "updated_at": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-05T12:48:42Z", + "git_url": "git://github.com/fbelzunc/audit-trail-plugin.git", + "ssh_url": "git@github.com:fbelzunc/audit-trail-plugin.git", + "clone_url": "https://github.com/fbelzunc/audit-trail-plugin.git", + "svn_url": "https://github.com/fbelzunc/audit-trail-plugin", + "homepage": "https://wiki.jenkins.io/display/JENKINS/Audit+Trail+Plugin", + "size": 526, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "jenkinsci:master", + "ref": "master", + "sha": "b948de58ee2258e22d6d5ab7863a769ea3847c2a", + "user": { + "login": "jenkinsci", + "id": 107424, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwNzQyNA==", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenkinsci/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "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://avatars.githubusercontent.com/u/107424?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenkinsci", + "html_url": "https://github.com/jenkinsci", + "followers_url": "https://api.github.com/users/jenkinsci/followers", + "following_url": "https://api.github.com/users/jenkinsci/following{/other_user}", + "gists_url": "https://api.github.com/users/jenkinsci/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenkinsci/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenkinsci/subscriptions", + "organizations_url": "https://api.github.com/users/jenkinsci/orgs", + "repos_url": "https://api.github.com/users/jenkinsci/repos", + "events_url": "https://api.github.com/users/jenkinsci/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": "2022-08-21T18:06:56Z", + "pushed_at": "2023-01-30T09:58:32Z", + "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": 502, + "stargazers_count": 17, + "watchers_count": 17, + "language": "Java", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 44, + "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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "administrative-monitor", + "audit", + "logging" + ], + "visibility": "public", + "forks": 44, + "open_issues": 4, + "watchers": 17, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96" + }, + "html": { + "href": "https://github.com/jenkinsci/audit-trail-plugin/pull/96" + }, + "issue": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96" + }, + "comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/statuses/b65dc6cb57e438ebae7e372c812c498a32d9e9f0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } + }, + "public": true, + "created_at": "2023-01-30T10:17:22Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26736668499", + "type": "PushEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "push_id": 12443552184, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/PierreBtz-patch-1", + "head": "6ed85073af7d3253ed941f7d23539de38551c124", + "before": "011e37643be88235af68fc9ea1b67a00d0241c91", + "commits": [ + { + "sha": "6ed85073af7d3253ed941f7d23539de38551c124", + "author": { + "email": "pibeitz@gmail.com", + "name": "Pierre Beitz" + }, + "message": "Specify target jdks (also add 17 to check in advance for potential issues).", + "distinct": true, + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/commits/6ed85073af7d3253ed941f7d23539de38551c124" + } + ] + }, + "public": true, + "created_at": "2023-01-30T09:58:31Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + }, + { + "id": "26528537229", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 1163429, + "name": "jenkinsci/audit-trail-plugin", + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "repository_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin", + "labels_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/labels{/name}", + "comments_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/comments", + "events_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/events", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "id": 1498261267, + "node_id": "PR_kwDOABHApc5FiWrf", + "number": 96, + "title": "Add daily rotation logs for LogFileAuditLogger", + "user": { + "login": "fbelzunc", + "id": 3898648, + "node_id": "MDQ6VXNlcjM4OTg2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3898648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fbelzunc", + "html_url": "https://github.com/fbelzunc", + "followers_url": "https://api.github.com/users/fbelzunc/followers", + "following_url": "https://api.github.com/users/fbelzunc/following{/other_user}", + "gists_url": "https://api.github.com/users/fbelzunc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fbelzunc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fbelzunc/subscriptions", + "organizations_url": "https://api.github.com/users/fbelzunc/orgs", + "repos_url": "https://api.github.com/users/fbelzunc/repos", + "events_url": "https://api.github.com/users/fbelzunc/events{/privacy}", + "received_events_url": "https://api.github.com/users/fbelzunc/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2022-12-15T11:28:13Z", + "updated_at": "2023-01-19T10:37:47Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/pulls/96", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96", + "diff_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.diff", + "patch_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96.patch", + "merged_at": null + }, + "body": "The current PR adds the functionality of rotating logs daily instead of per file size.\r\n\r\nThis is very useful in case you are saving audit logs for auditing purposes as you have a file per day that represents the changes performed on that specific day. You could then send them to an S3 bucket for example. \r\n\r\nThe files will be created in the specified configured location `Log Location: /tmp/audit-trail-logs/audit.log` and will create files like the ones below. Adding at the end of the specified file a data timestamp.\r\n\r\n```\r\naudit.log-2022-12-16\r\naudit.log-2022-12-15\r\naudit.log-2022-12-14\r\n```\r\n\r\nCC @chikitulfo\r\n\r\n\r\n\r\n- [X] Make sure you are opening from a **topic/feature/bugfix branch** (right side) and not your main branch!\r\n- [X] Ensure that the pull request title represents the desired changelog entry\r\n- [X] Please describe what you did\r\n- [ ] Link to relevant issues in GitHub or Jira\r\n- [ ] Link to relevant pull requests, esp. upstream and downstream changes\r\n- [X] Ensure you have provided tests - that demonstrates feature works or fixes the issue\r\n\r\n\r\n", + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/comments/1396763076", + "html_url": "https://github.com/jenkinsci/audit-trail-plugin/pull/96#issuecomment-1396763076", + "issue_url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/96", + "id": 1396763076, + "node_id": "IC_kwDOABHApc5TQOnE", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-01-19T10:37:47Z", + "updated_at": "2023-01-19T10:37:47Z", + "author_association": "CONTRIBUTOR", + "body": "Sorry I didn't have time to review this yet, I'll try to do it next week.", + "reactions": { + "url": "https://api.github.com/repos/jenkinsci/audit-trail-plugin/issues/comments/1396763076/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-01-19T10:37:47Z", + "org": { + "id": 107424, + "login": "jenkinsci", + "gravatar_id": "", + "url": "https://api.github.com/orgs/jenkinsci", + "avatar_url": "https://avatars.githubusercontent.com/u/107424?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/users_pierrebtz_events_public-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/users_pierrebtz_events_public-2.json new file mode 100644 index 0000000000..04915f3660 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/__files/users_pierrebtz_events_public-2.json @@ -0,0 +1,1100 @@ +[ + { + "id": "28417092178", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627847050, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:56Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417091682", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627847050, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:54Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417089846", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627847015, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:49Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417089541", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627847015, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:49Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417086303", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846950, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:40Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417085920", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846950, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:39Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417081790", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846878, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:27Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417081467", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846878, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:26Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417078254", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846820, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:17Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417077932", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846820, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:29:16Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417064775", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846624, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:28:41Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28417064527", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627846624, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:28:40Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416955472", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627844976, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:23:52Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416955223", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627844976, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T10:23:52Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416328202", + "type": "IssueCommentEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 617210, + "name": "hub4j/github-api", + "url": "https://api.github.com/repos/hub4j/github-api" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/hub4j/github-api/issues/1624", + "repository_url": "https://api.github.com/repos/hub4j/github-api", + "labels_url": "https://api.github.com/repos/hub4j/github-api/issues/1624/labels{/name}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/issues/1624/comments", + "events_url": "https://api.github.com/repos/hub4j/github-api/issues/1624/events", + "html_url": "https://github.com/hub4j/github-api/pull/1624", + "id": 1607134951, + "node_id": "PR_kwDOAAlq-s5LJX6a", + "number": 1624, + "title": "Generify OrgAppInstallationAuthorizationProvider to support any kind of app lookup.", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2023-03-02T16:37:48Z", + "updated_at": "2023-04-14T09:56:31Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/hub4j/github-api/pulls/1624", + "html_url": "https://github.com/hub4j/github-api/pull/1624", + "diff_url": "https://github.com/hub4j/github-api/pull/1624.diff", + "patch_url": "https://github.com/hub4j/github-api/pull/1624.patch", + "merged_at": null + }, + "body": "# Description\r\n\r\nThe `OrgAppInstallationAuthorizationProvider` only works with organization level apps, leaving out user apps. The bulk of the class logic remains useful to perform application lookup other ways (eg using the installation id), or even to lookup for user application.\r\n\r\nThis PR provides a way for the API user to provide its own lookup logic.\r\n\r\nThis PR is submitted as a draft because:\r\n* I would need access to the `hub4j-test-org` as well as the installation id of the test app to finish writing the tests.\r\n* I'm not 100% convinced `OrgAppInstallationAuthorizationProvider` should be deprecated. The way I see it, it's not useless and just a maintenance burden that you might want to remove in the future after a deprecation phase :)\r\n\r\n# Before submitting a PR:\r\n\r\n- [x] Changes must not break binary backwards compatibility. If you are unclear on how to make the change you think is needed while maintaining backward compatibility, [CONTRIBUTING.md](CONTRIBUTING.md) for details.\r\n- [x] Add JavaDocs and other comments as appropriate. Consider including links in comments to relevant documentation on https://docs.github.com/en/rest . \r\n- [x] Add tests that cover any added or changed code. This generally requires capturing snapshot test data. See [CONTRIBUTING.md](CONTRIBUTING.md) for details.\r\n- [x] Run `mvn -D enable-ci clean install site` locally. If this command doesn't succeed, your change will not pass CI.\r\n- [x] Push your changes to a branch other than `main`. You will create your PR from that branch.\r\n\r\n# When creating a PR: \r\n\r\n- [x] Fill in the \"Description\" above with clear summary of the changes. This includes:\r\n- ~[ ] If this PR fixes one or more issues, include \"Fixes #\" lines for each issue.~ \r\n- ~[ ] Provide links to relevant documentation on https://docs.github.com/en/rest where possible.~\r\n- [x] All lines of new code should be covered by tests as reported by code coverage. Any lines that are not covered must have PR comments explaining why they cannot be covered. For example, \"Reaching this particular exception is hard and is not a particular common scenario.\"\r\n- [x] Enable \"Allow edits from maintainers\".\r\n", + "reactions": { + "url": "https://api.github.com/repos/hub4j/github-api/issues/1624/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/hub4j/github-api/issues/1624/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/hub4j/github-api/issues/comments/1508257742", + "html_url": "https://github.com/hub4j/github-api/pull/1624#issuecomment-1508257742", + "issue_url": "https://api.github.com/repos/hub4j/github-api/issues/1624", + "id": 1508257742, + "node_id": "IC_kwDOAAlq-s5Z5i_O", + "user": { + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2023-04-14T09:56:30Z", + "updated_at": "2023-04-14T09:56:30Z", + "author_association": "NONE", + "body": "@bitwiseman thanks for the access. I finally had time to complete this work...", + "reactions": { + "url": "https://api.github.com/repos/hub4j/github-api/issues/comments/1508257742/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2023-04-14T09:56:31Z", + "org": { + "id": 54909825, + "login": "hub4j", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?" + } + }, + { + "id": "28416107012", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831602, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:46Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416106622", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831602, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:45Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416104711", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831568, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:40Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416104351", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831568, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:39Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416100777", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831506, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:29Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416101046", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831506, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:30Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416096242", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831437, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:17Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416096050", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831437, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:17Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416092544", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831387, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:07Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416092214", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627831387, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:46:06Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416062608", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830900, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:48Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416062374", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830900, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:47Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416060343", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830861, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:42Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416060072", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830861, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:41Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + }, + { + "id": "28416056662", + "type": "CreateEvent", + "actor": { + "id": 9881659, + "login": "PierreBtz", + "display_login": "PierreBtz", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?" + }, + "repo": { + "id": 627830807, + "name": "hub4j-test-org/github-api-test", + "url": "https://api.github.com/repos/hub4j-test-org/github-api-test" + }, + "payload": { + "ref": "main", + "ref_type": "branch", + "master_branch": "main", + "description": "A test repository for testing the github-api project: github-api-test", + "pusher_type": "user" + }, + "public": true, + "created_at": "2023-04-14T09:44:33Z", + "org": { + "id": 7544739, + "login": "hub4j-test-org", + "gravatar_id": "", + "url": "https://api.github.com/orgs/hub4j-test-org", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/orgs_hub4j-10.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/orgs_hub4j-10.json new file mode 100644 index 0000000000..e96842bba3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/orgs_hub4j-10.json @@ -0,0 +1,51 @@ +{ + "id": "319161e2-5ca3-4b9b-a864-d2769ac65c0a", + "name": "orgs_hub4j", + "request": { + "url": "/orgs/hub4j", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-10.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"17886ad5c709d602ea2edce0f5e2d0eaa4ce42eb7c93ccff5095454230e09133\"", + "Last-Modified": "Fri, 08 May 2020 21:26:19 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "241", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C5:1390:D738B6:1BBB72B:64392B4C" + } + }, + "uuid": "319161e2-5ca3-4b9b-a864-d2769ac65c0a", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/repos_hub4j_github-api-11.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/repos_hub4j_github-api-11.json new file mode 100644 index 0000000000..c735bfcea5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/repos_hub4j_github-api-11.json @@ -0,0 +1,51 @@ +{ + "id": "53397f79-286b-40e3-a46e-7f0b62f9a25e", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-11.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"bac5736f3987e66f5d6ab2330342e5bc4ed32a83cc9755ab208df5c66e6fa3d0\"", + "Last-Modified": "Fri, 14 Apr 2023 09:46:15 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "242", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C6:159C:E2F7A4:1D30890:64392B4C" + } + }, + "uuid": "53397f79-286b-40e3-a46e-7f0b62f9a25e", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user-1.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user-1.json new file mode 100644 index 0000000000..df77409e00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "707ef7bb-0c32-468f-8fbd-3e6484b992a7", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"73d604d21fe5c7578604fafd3caaea441d8d1b33b6a7ee437e050ba01c63f39c\"", + "Last-Modified": "Thu, 13 Apr 2023 15:51:35 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "231", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5BC:6C1E:E30F35:1D2C06D:64392B45" + } + }, + "uuid": "707ef7bb-0c32-468f-8fbd-3e6484b992a7", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-3.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-3.json new file mode 100644 index 0000000000..10d3c09c14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-3.json @@ -0,0 +1,53 @@ +{ + "id": "c5b548a9-1c5e-4e92-be20-c28938172fe6", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=2", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"19848c85743be1e583d6c54e6d23a7c678210fe724dd5160d307416f016fbac1\"", + "Last-Modified": "Fri, 14 Apr 2023 09:44:31 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "234", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5BE:65B8:D6D8BF:1BA8266:64392B46", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "c5b548a9-1c5e-4e92-be20-c28938172fe6", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-4.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-4.json new file mode 100644 index 0000000000..2d0f22f9f8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-4.json @@ -0,0 +1,53 @@ +{ + "id": "d326540e-2493-43b4-ac55-3a674b873156", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=3", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"227972ff561a621d376f1d0b24b5db0f2f2c19e85fbd56b5160d3c8888740dad\"", + "Last-Modified": "Mon, 03 Apr 2023 10:10:01 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "235", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5BF:576B:D18CB9:1B08B08:64392B47", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d326540e-2493-43b4-ac55-3a674b873156", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-5.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-5.json new file mode 100644 index 0000000000..f3926e1563 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-5.json @@ -0,0 +1,53 @@ +{ + "id": "9c39603e-fd85-49e1-afa2-cb83d44f7eea", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=4", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-5.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"a139b5a8504378b77e4ad307609b666c6f6d72fb5c0858f5a3323188751d2d61\"", + "Last-Modified": "Mon, 20 Mar 2023 09:34:43 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "236", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C0:5950:CD2D4C:1A76F26:64392B48", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "9c39603e-fd85-49e1-afa2-cb83d44f7eea", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-6.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-6.json new file mode 100644 index 0000000000..967525a5ad --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-6.json @@ -0,0 +1,53 @@ +{ + "id": "d6cd04ce-78f2-4335-a3e7-33e2b22f43f1", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=5", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-6.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"fd190cc27740185030291aaf99fb7bb3999ec0c41b4df050182913a87a5c431d\"", + "Last-Modified": "Thu, 09 Mar 2023 13:49:22 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "237", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C1:1A2C:D52D9D:1B7235D:64392B49", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "d6cd04ce-78f2-4335-a3e7-33e2b22f43f1", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-7.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-7.json new file mode 100644 index 0000000000..07650dbc44 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-7.json @@ -0,0 +1,53 @@ +{ + "id": "f5565be2-f059-4d73-9a31-94e1e87369ca", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=6", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"b3a8273b75efef955e1e9fdb9fc373b9d22c6dda0b6664a8ff3afb9fdf01321a\"", + "Last-Modified": "Fri, 03 Mar 2023 13:33:40 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "238", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C2:0A09:DCBA21:1C66EAF:64392B49", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "f5565be2-f059-4d73-9a31-94e1e87369ca", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-8.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-8.json new file mode 100644 index 0000000000..11658e93c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-8.json @@ -0,0 +1,53 @@ +{ + "id": "575826d3-bee1-4084-bd64-81aa77f72870", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=7", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-8.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"de313e052bf9655b5ea0d57522f18f6de796d91aa52dfffa7361f051ad14b216\"", + "Last-Modified": "Fri, 03 Mar 2023 10:51:50 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "239", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C3:576B:D19042:1B09258:64392B4A", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "575826d3-bee1-4084-bd64-81aa77f72870", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-9.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-9.json new file mode 100644 index 0000000000..260a71dc75 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/user_9881659_events_public-9.json @@ -0,0 +1,53 @@ +{ + "id": "7fa8f12b-7c40-48ad-b9a5-df42ac2dcc16", + "name": "user_9881659_events_public", + "request": { + "url": "/user/9881659/events/public?page=8", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user_9881659_events_public-9.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"43148e753d0c870d80f889465bbd53b26b42a591610c25d0c479a7b5d2790de6\"", + "Last-Modified": "Tue, 31 Jan 2023 10:44:03 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "240", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5C4:1A2C:D530CA:1B72A06:64392B4B", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "7fa8f12b-7c40-48ad-b9a5-df42ac2dcc16", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/users_pierrebtz_events_public-2.json b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/users_pierrebtz_events_public-2.json new file mode 100644 index 0000000000..3f8305ecf6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/AppTest/wiremock/testUserPublicEventApi/mappings/users_pierrebtz_events_public-2.json @@ -0,0 +1,53 @@ +{ + "id": "3523b3bf-59fb-4067-9e96-09c1e2c0489c", + "name": "users_pierrebtz_events_public", + "request": { + "url": "/users/PierreBtz/events/public", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "users_pierrebtz_events_public-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 14 Apr 2023 10:30:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"86d0517dface20075f5beb5287aa6a413faff55313a79d132a0adaab4a03abef\"", + "Last-Modified": "Fri, 14 Apr 2023 10:29:56 GMT", + "X-Poll-Interval": "60", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-05-14 08:53:01 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1681471155", + "X-RateLimit-Used": "233", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C5BD:1A2C:D52965:1B71AB3:64392B46", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "3523b3bf-59fb-4067-9e96-09c1e2c0489c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler-2.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler-2.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler-2.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits-3.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits-3.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits-3.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/user-1.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/__files/user-1.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/__files/user-1.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler-2.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler-2.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler-2.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits-3.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits-3.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits-3.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-8.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-9.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-10.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-11.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-12.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-13.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-22.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-23.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-18.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-19.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-6.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-7.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-20.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-21.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-4.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-5.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-14.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-15.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-16.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-17.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/user-1.json similarity index 100% rename from src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFiles/mappings/user-1.json rename to src/test/resources/org/kohsuke/github/CommitTest/wiremock/getFiles/mappings/user-1.json diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..d1155bee31 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,31 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "description": "Hub4j Test Org Description (this could be null or blank too)", + "name": "Hub4j Test Org Name (this could be null or blank too)", + "company": null, + "blog": "https://hub4j.url.io/could/be/null", + "location": "Hub4j Test Org Location (this could be null or blank too)", + "email": "hub4jtestorgemail@could.be.null.com", + "twitter_username": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 26, + "public_gists": 0, + "followers": 1, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2020-06-04T05:56:10Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..e846a32a4c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,129 @@ +{ + "id": 657543062, + "node_id": "R_kgDOJzFPlg", + "name": "CommitTest", + "full_name": "hub4j-test-org/CommitTest", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/CommitTest", + "description": "Repository used by CommitTest", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest", + "forks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/deployments", + "created_at": "2023-06-23T09:43:53Z", + "updated_at": "2023-06-23T12:58:28Z", + "pushed_at": "2023-06-23T09:52:49Z", + "git_url": "git://github.com/hub4j-test-org/CommitTest.git", + "ssh_url": "git@github.com:hub4j-test-org/CommitTest.git", + "clone_url": "https://github.com/hub4j-test-org/CommitTest.git", + "svn_url": "https://github.com/hub4j-test-org/CommitTest", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json new file mode 100644 index 0000000000..56cb469415 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json @@ -0,0 +1,422 @@ +{ + "sha": "dabf0e89fe7107d6e294a924561533ecf80f2384", + "node_id": "C_kwDOJzFPltoAKGRhYmYwZTg5ZmU3MTA3ZDZlMjk0YTkyNDU2MTUzM2VjZjgwZjIzODQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:52:45Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:52:45Z" + }, + "message": "A commit with a few files", + "tree": { + "sha": "bf2f212df308d53119dc94ddc20eb596ca38e8ac", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/bf2f212df308d53119dc94ddc20eb596ca38e8ac" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/dabf0e89fe7107d6e294a924561533ecf80f2384", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624" + } + ], + "stats": { + "total": 28, + "additions": 0, + "deletions": 28 + }, + "files": [ + { + "sha": "75eda8d1cda42b65f94bed0f37ae01a87d0b7355", + "filename": "random/9016.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9016.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-19378" + }, + { + "sha": "ad120f8060ecbd270e2389363d676dbbbc926948", + "filename": "random/9022.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9022.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-25931" + }, + { + "sha": "926254112306e8b0266c8305b7603ee3b42ba89a", + "filename": "random/9039.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9039.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-27153" + }, + { + "sha": "251d54deaf456022558d283ce73fb28aef7eec6a", + "filename": "random/9051.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9051.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-9121" + }, + { + "sha": "bea6c87fde2c2d5bf0fa83246251b56b39d6329c", + "filename": "random/9122.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9122.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-21593" + }, + { + "sha": "f992d65065b2c6c6e30aefd3086a3302b406dfd4", + "filename": "random/9126.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-8947" + }, + { + "sha": "7cf74aca5488cafda4f7feabb0c15976a9d1d56b", + "filename": "random/9156.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-13964" + }, + { + "sha": "3d068fdc94329daeb7dac8ede8ce564449f797fd", + "filename": "random/9165.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9165.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-26012" + }, + { + "sha": "1ad4e3d972a12cbe574ea529b0ed4e8122ec10c9", + "filename": "random/922.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-32311" + }, + { + "sha": "b3084c0a62aab761640b385dc96a046ec7d1da8e", + "filename": "random/9220.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9220.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-23889" + }, + { + "sha": "7182af9961399938b8c00e1e2d84ce7ebb2a2dab", + "filename": "random/9286.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9286.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-28563" + }, + { + "sha": "35fc9dd49e1abb8b0cc6c8a0a2e42298e68ec4e6", + "filename": "random/9291.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9291.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-14003" + }, + { + "sha": "faa29ef7e5d0be6da92ae8920b95dbad1a331f21", + "filename": "random/9347.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9347.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-1184" + }, + { + "sha": "37ce6f2909f097320b07d808958066b1df4d4b6f", + "filename": "random/9367.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-27492" + }, + { + "sha": "f609e173d2baf6d4a50785ca9f505cc4ad75da22", + "filename": "random/9383.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-20661" + }, + { + "sha": "738688342c10ed3106d152820e942dd57257a58c", + "filename": "random/9400.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9400.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-28397" + }, + { + "sha": "eac03d8bcdaf572eee49f967e1921f2ab16b3c69", + "filename": "random/952.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F952.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-10072" + }, + { + "sha": "1125b8a65723efe5e00b0311d6587c5c93e38e26", + "filename": "random/9533.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9533.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-18623" + }, + { + "sha": "74a16aae535681e4c92b7875189fc79fc05da739", + "filename": "random/9567.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9567.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-22985" + }, + { + "sha": "736dfba31951429e99623e9f92f1287399260e0c", + "filename": "random/9601.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9601.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-14968" + }, + { + "sha": "61560f2b8a50f81bc2da2ed4cbbde276304c0d8c", + "filename": "random/9658.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9658.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-23193" + }, + { + "sha": "212000d5d19addce43e0c6d756a99cbf6e2bf857", + "filename": "random/970.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F970.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-29137" + }, + { + "sha": "d8d30652a50892d149a3b22618e8140f2cab0012", + "filename": "random/9780.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9780.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-22061" + }, + { + "sha": "3c3026c1544bb8b9a9cf6e8eb3fdaf7c82d593fa", + "filename": "random/9786.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9786.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-17545" + }, + { + "sha": "5e70af066247fa61b1d80640a177d57f43dac27b", + "filename": "random/9852.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-30327" + }, + { + "sha": "d5633366b7d2d7e7ccf2501887462a512358356f", + "filename": "random/9958.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9958.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-9532" + }, + { + "sha": "88af16f4f329470ef3124e15f732476930ab5e01", + "filename": "random/998.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F998.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-12704" + }, + { + "sha": "1819e489226215dfc59436313c6aa70a2d764672", + "filename": "random/9985.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9985.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-10402" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/user-1.json new file mode 100644 index 0000000000..5bb6552b14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 2, + "public_gists": 0, + "followers": 0, + "following": 1, + "created_at": "2015-02-09T11:27:02Z", + "updated_at": "2023-06-19T12:28:16Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..5cc0bb434c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,49 @@ +{ + "id": "568ad1f7-70f3-44b4-9dd2-fced1bda461c", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f088026de3a7d5b131d22cc2e1f5f9c2162bacfd941b25b52b253d81245f2ee3\"", + "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4706", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "294", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BD97:111A:7D15490:7E51FFF:6495A206" + } + }, + "uuid": "568ad1f7-70f3-44b4-9dd2-fced1bda461c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..ed57a32643 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,49 @@ +{ + "id": "f7aa481e-6f1a-4a8a-b76a-c092eb976ce1", + "name": "repos_hub4j-test-org_committest", + "request": { + "url": "/repos/hub4j-test-org/CommitTest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"98268d9c57c53e7c3cf61ab77b0aa654fc9cad2b9cf048989e80acada2aaccd0\"", + "Last-Modified": "Fri, 23 Jun 2023 12:58:28 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "295", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7596:3F14:319F1C1:322CDF6:6495A206" + } + }, + "uuid": "f7aa481e-6f1a-4a8a-b76a-c092eb976ce1", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json new file mode 100644 index 0000000000..94e928d817 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json @@ -0,0 +1,49 @@ +{ + "id": "a285c063-57a7-4fb4-88ed-4d918b86dadf", + "name": "repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384", + "request": { + "url": "/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"6ea0a1de87eb2456ac1d04542fb8c991256a409b20e279ad0167e2d6136b1acd\"", + "Last-Modified": "Fri, 23 Jun 2023 09:52:45 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4704", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "296", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "8839:5D2A:7EDAEAB:8017A05:6495A206" + } + }, + "uuid": "a285c063-57a7-4fb4-88ed-4d918b86dadf", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/user-1.json new file mode 100644 index 0000000000..cbf2dbe6e5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/getMessage/mappings/user-1.json @@ -0,0 +1,49 @@ +{ + "id": "a43edd39-0975-47f6-8142-ae9f26d4660c", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"b142ca081f3c3ae38c3b38386b1f54994546feb4c284595350117b14b741cd37\"", + "Last-Modified": "Mon, 19 Jun 2023 12:28:16 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4708", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "292", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "183E:B69E:7986A76:7AC363F:6495A205" + } + }, + "uuid": "a43edd39-0975-47f6-8142-ae9f26d4660c", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..d1155bee31 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,31 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "description": "Hub4j Test Org Description (this could be null or blank too)", + "name": "Hub4j Test Org Name (this could be null or blank too)", + "company": null, + "blog": "https://hub4j.url.io/could/be/null", + "location": "Hub4j Test Org Location (this could be null or blank too)", + "email": "hub4jtestorgemail@could.be.null.com", + "twitter_username": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 26, + "public_gists": 0, + "followers": 1, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2020-06-04T05:56:10Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..e846a32a4c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,129 @@ +{ + "id": 657543062, + "node_id": "R_kgDOJzFPlg", + "name": "CommitTest", + "full_name": "hub4j-test-org/CommitTest", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/CommitTest", + "description": "Repository used by CommitTest", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest", + "forks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/deployments", + "created_at": "2023-06-23T09:43:53Z", + "updated_at": "2023-06-23T12:58:28Z", + "pushed_at": "2023-06-23T09:52:49Z", + "git_url": "git://github.com/hub4j-test-org/CommitTest.git", + "ssh_url": "git@github.com:hub4j-test-org/CommitTest.git", + "clone_url": "https://github.com/hub4j-test-org/CommitTest.git", + "svn_url": "https://github.com/hub4j-test-org/CommitTest", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json new file mode 100644 index 0000000000..591a59f8d5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json @@ -0,0 +1,3686 @@ +{ + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "node_id": "C_kwDOJzFPltoAKGI4MzgxMmFhNzZiYjdjM2M0M2RhOTZmYmY4YWVjMWU0NWRiODc2MjQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "message": "A commit with lots of files", + "tree": { + "sha": "6718afb2869b086c47122e4187b14585fed52644", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/6718afb2869b086c47122e4187b14585fed52644" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96" + } + ], + "stats": { + "total": 691, + "additions": 691, + "deletions": 0 + }, + "files": [ + { + "sha": "58109dfb98bafcd984fbeab28225453212473725", + "filename": "random/10054.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10054.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10054.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10054.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4202" + }, + { + "sha": "c1b93cca5c675c0ead59073b8c8040fe7fc32b3d", + "filename": "random/10083.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10083.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10083.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10083.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20054" + }, + { + "sha": "3d833d0152bb15e0fc639ebb5926fa5a7e9ba61b", + "filename": "random/10117.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10117.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10117.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10117.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7422" + }, + { + "sha": "8b7736421f3124c0c1383af38bd4a623f4f9ef6b", + "filename": "random/10129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31715" + }, + { + "sha": "280de93c82bb2da1d383f0933cc7d1889cd9966b", + "filename": "random/10271.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10271.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10271.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10271.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14188" + }, + { + "sha": "49bf8bf0b77b1c3e5069c60955cbf1568f95d800", + "filename": "random/10286.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10286.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10286.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10286.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16231" + }, + { + "sha": "caed6f18ea4a568375a67685116979faff41d8f3", + "filename": "random/1030.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1030.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1030.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1030.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20159" + }, + { + "sha": "f1bbeacd0b541b2be1b7c0df0601a3f26ad28791", + "filename": "random/1031.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1031.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1031.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1031.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26813" + }, + { + "sha": "2e442b4e1bebab2385081439658a98cf411a0838", + "filename": "random/10341.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10341.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10341.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10341.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26190" + }, + { + "sha": "db3ad957347f4c5735bdcd0edb989e266f52b09e", + "filename": "random/10390.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10390.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10390.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10390.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23726" + }, + { + "sha": "e775b2b9963d8917f408e67b83bc4efb1e074dd0", + "filename": "random/10461.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10461.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10461.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10461.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22930" + }, + { + "sha": "77de9266d3ef4cc7e6dfffbe194c8853ede9145c", + "filename": "random/10485.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10485.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10485.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10485.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1767" + }, + { + "sha": "b9423ab4e029e1247ccf5706b45a134fed986c5e", + "filename": "random/10562.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10562.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10562.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10562.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12336" + }, + { + "sha": "4d853e9b473b67d11c439ee543239eaa0fdd8c95", + "filename": "random/10618.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10618.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10618.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10618.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24556" + }, + { + "sha": "29988c80205f0718a61492794612ee7a9ab94fee", + "filename": "random/10675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+751" + }, + { + "sha": "24c133331a35c2fbc178d60ab0145dca1aba8084", + "filename": "random/10680.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10680.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10680.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10680.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14876" + }, + { + "sha": "2709a9818d75e0d66916d90662dcb0bcf2240ce1", + "filename": "random/1069.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1069.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1069.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1069.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17233" + }, + { + "sha": "e2de40278c03b0bab2ee0d3f9748d0d8eb168b5a", + "filename": "random/10925.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10925.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10925.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10925.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19949" + }, + { + "sha": "d2a032914a670901c68eda150909c6de4aa4e29e", + "filename": "random/10937.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10937.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10937.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10937.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23757" + }, + { + "sha": "af08b9088cf0ef87c7756330c0d03b98ff1af411", + "filename": "random/10959.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10959.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10959.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10959.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6483" + }, + { + "sha": "ee92ddfbb7d0bc7f8ff2d3a69df6c6402e68890a", + "filename": "random/10970.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10970.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10970.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10970.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19415" + }, + { + "sha": "a194806864cba3dbd597c840d399f157b7f16e73", + "filename": "random/11035.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11035.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11035.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11035.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12106" + }, + { + "sha": "ad58e907b52c0b3c802a3c1865d5fdbc7cc79c07", + "filename": "random/11062.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11062.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11062.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11062.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13075" + }, + { + "sha": "48abe000dd882219080c19912c549d35249f600f", + "filename": "random/11069.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11069.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11069.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11069.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19916" + }, + { + "sha": "20cc2a0e602e9f0484d024f810629d67aabf7cfc", + "filename": "random/11129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30263" + }, + { + "sha": "4c23fe508263f40344889258ded7d7b2a68baae4", + "filename": "random/11174.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11174.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11174.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11174.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7879" + }, + { + "sha": "aaed00b0188132192dec6bb5705d767a41ee020c", + "filename": "random/11234.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11234.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11234.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11234.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14332" + }, + { + "sha": "0ff5ad9b30431e05092954425645f050293c8813", + "filename": "random/11265.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11265.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11265.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11265.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2361" + }, + { + "sha": "10455291eb355cf2b0430dfd4bdf0d5fb951c30b", + "filename": "random/11267.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11267.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11267.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11267.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16882" + }, + { + "sha": "5257135e4e26840aff747cf4566e385f6e1d2152", + "filename": "random/11313.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11313.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11313.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11313.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16855" + }, + { + "sha": "d7a33ea4704b08e41ae10f1b4bb6e5f9b3f8f484", + "filename": "random/11343.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11343.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11343.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11343.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3297" + }, + { + "sha": "761fcd3ac2102706b66c0443712c3c4af9f42d9d", + "filename": "random/11348.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11348.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11348.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11348.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+499" + }, + { + "sha": "e758f9f21ed7b1bc331777e3e054e54d887aadfd", + "filename": "random/11360.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11360.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11360.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11360.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28204" + }, + { + "sha": "95f513b2a8750a50b3760a88a96a564f1f045742", + "filename": "random/11366.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11366.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11366.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11366.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30364" + }, + { + "sha": "d9062d27a112b79ad8c5d91dc7fe65e0422f809a", + "filename": "random/11466.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11466.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11466.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11466.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16660" + }, + { + "sha": "c49ee91c1b721157758d74d57e78be81db1cb47a", + "filename": "random/115.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F115.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F115.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F115.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32288" + }, + { + "sha": "f6f0b4a895689622132fdbe8f5ed16ba2781c737", + "filename": "random/11511.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11511.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11511.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11511.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28346" + }, + { + "sha": "5629b493867bcac1b0f62a11e8d1a9afe9040044", + "filename": "random/11519.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11519.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11519.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11519.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28752" + }, + { + "sha": "2573adf01667939eaa4d715ffe68c57002cb64d4", + "filename": "random/11574.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11574.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11574.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11574.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4182" + }, + { + "sha": "fcb5710b163fca50533a70130cc75ded08fbd1f3", + "filename": "random/11619.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11619.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11619.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11619.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14773" + }, + { + "sha": "fb5296e3e56435b7975a837bfe383d95b527b2b2", + "filename": "random/11668.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11668.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11668.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11668.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9493" + }, + { + "sha": "4146d1bfbc3866e9648d1caa68589c840a0959ee", + "filename": "random/11709.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11709.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11709.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11709.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20294" + }, + { + "sha": "80442778f7daab9583d7c13b2a4831baf64eb8d9", + "filename": "random/11740.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11740.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11740.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11740.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11493" + }, + { + "sha": "f4304ee3debbd9bcb2303428825e890855bb38f4", + "filename": "random/11761.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11761.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11761.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11761.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25927" + }, + { + "sha": "2ef4cc65da8682a143116b9317f66de29d699475", + "filename": "random/11783.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11783.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11783.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11783.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4393" + }, + { + "sha": "428a9a569ea0075b32d61e66379405f8e13c5221", + "filename": "random/11843.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11843.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11843.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11843.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11238" + }, + { + "sha": "8267ef1a708058427cb5d9574d3d69b7034fb893", + "filename": "random/11853.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11853.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11853.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11853.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24566" + }, + { + "sha": "835c5f1dcd337466bbb385de656b22792b45416a", + "filename": "random/11978.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11978.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11978.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11978.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+973" + }, + { + "sha": "b894075a640b9126c67e6b6c41acca968ade9368", + "filename": "random/12017.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12017.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12017.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12017.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21018" + }, + { + "sha": "e9feae6e323e01d13d50f203534db23b788ad612", + "filename": "random/12082.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12082.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12082.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12082.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22199" + }, + { + "sha": "9d1731d8adc8f6eaa07228211e847b6f4b61fb61", + "filename": "random/12126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1642" + }, + { + "sha": "f9ce2ceb82c343ebc87a97008d47ac22f2ebf673", + "filename": "random/12214.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12214.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12214.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12214.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13695" + }, + { + "sha": "6265238261ba6081917451d7c7688a1bd603cca9", + "filename": "random/12222.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12222.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12222.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12222.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31039" + }, + { + "sha": "ad1c0201ef68e51c79930cbe19c86fc102b1cb88", + "filename": "random/12233.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12233.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12233.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12233.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22035" + }, + { + "sha": "ce0a11d0eb149935469242f1e5bebd57aa2cd493", + "filename": "random/12443.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12443.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12443.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12443.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1367" + }, + { + "sha": "1cd5130788b06db0d1c23854d1b6d5840e5c6283", + "filename": "random/12476.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12476.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12476.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12476.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21439" + }, + { + "sha": "2f66db150b1ed915aced0c068fd15a7eaa3989b6", + "filename": "random/1248.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1248.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1248.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1248.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15137" + }, + { + "sha": "0b7138ded57a23662b330dca1a29223ac878e4bb", + "filename": "random/12513.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12513.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12513.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12513.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22595" + }, + { + "sha": "a272df67cdd076ce0b5a722c38129365ba3ea9af", + "filename": "random/12569.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12569.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12569.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12569.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22499" + }, + { + "sha": "b790b6934314afa91a63fad94d4ddfa5e9cc056b", + "filename": "random/12570.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12570.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12570.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12570.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22150" + }, + { + "sha": "9a3585133d4416d05db47b39b9104f38de4e9330", + "filename": "random/12606.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12606.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12606.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12606.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17537" + }, + { + "sha": "8503f29cee34618e65ac5cf3c9eba836710b8697", + "filename": "random/12650.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12650.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12650.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12650.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7649" + }, + { + "sha": "ee093ac5aaf62ae0ed1b0e335d77a2987e498d3d", + "filename": "random/12675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12796" + }, + { + "sha": "643216e08df1a769631bf1b704b2243402356513", + "filename": "random/12708.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12708.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12708.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12708.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29933" + }, + { + "sha": "dcda5ac69fe7daa8e30525089b5440ee16236a28", + "filename": "random/12715.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12715.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12715.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12715.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17294" + }, + { + "sha": "94907966eaaf3b65ac50ba97d0a859edbcb0939e", + "filename": "random/12752.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12752.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12752.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12752.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28091" + }, + { + "sha": "815094360f45bd7324342f1a05f58dc439980c84", + "filename": "random/12814.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12814.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12814.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12814.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18312" + }, + { + "sha": "2d984996c225a626f1016658ccc79678e3c2a499", + "filename": "random/12834.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12834.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12834.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12834.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17504" + }, + { + "sha": "6e5fd786dd4a3d1978d93a02caff6cdec4cc7c81", + "filename": "random/12842.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12842.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12842.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12842.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29867" + }, + { + "sha": "7fba2b43771eec7be9298f8336f9a6cf52f159b0", + "filename": "random/12885.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12885.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12885.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12885.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+209" + }, + { + "sha": "20c89be1ef05fac1162b143d1f97f2eb3945e7ce", + "filename": "random/12913.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12913.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12913.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12913.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30996" + }, + { + "sha": "accf44d4842335ed03aee7843120dcf70daa67b8", + "filename": "random/12945.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12945.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12945.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12945.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1402" + }, + { + "sha": "419270dd5b881cd2c339c97632db332a10758c8e", + "filename": "random/13090.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13090.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13090.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13090.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30384" + }, + { + "sha": "165ef87e5427c30047073d8d763ef36335dac6db", + "filename": "random/13099.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13099.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13099.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13099.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20150" + }, + { + "sha": "27149576c254b367b0ca1327e4aa3a9ad9ee849a", + "filename": "random/13151.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13151.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13151.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13151.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2611" + }, + { + "sha": "a26a312b0d824e92eef87248511f892332b93aa6", + "filename": "random/13170.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13170.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13170.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13170.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32729" + }, + { + "sha": "02555d0b74881ab508bbf2027df7907b64379772", + "filename": "random/13199.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13199.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13199.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13199.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19091" + }, + { + "sha": "c48f9e045258746be228297abdb2ab587e5db7c3", + "filename": "random/13241.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13241.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13241.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13241.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+269" + }, + { + "sha": "0baf28e7dd9e728ac621da29d63f44b4b472d365", + "filename": "random/13266.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13266.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13266.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13266.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24504" + }, + { + "sha": "946caf00cf3699733cd90b18dcec3cecead48f94", + "filename": "random/13386.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13386.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13386.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13386.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8828" + }, + { + "sha": "882e3064dd2cde1768ad7ce94db9d2b8ac63d676", + "filename": "random/13387.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13387.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13387.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13387.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32068" + }, + { + "sha": "9f810330cbb38269b01d037ea61fb8ad5c8d753f", + "filename": "random/13399.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13399.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13399.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13399.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14580" + }, + { + "sha": "d90f2b1d5b5199b1dec442ae45e0a0fbd424f3ed", + "filename": "random/13444.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13444.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13444.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13444.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1026" + }, + { + "sha": "9b517ca72671b43836bc2a8dd3cb6a802750980b", + "filename": "random/13480.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13480.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13480.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13480.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18764" + }, + { + "sha": "17f03e10b2194865fdf989bfbaf2d46f5c82a0d2", + "filename": "random/13508.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13508.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13508.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13508.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3480" + }, + { + "sha": "3028632c3c90fb159c3256a6cd8b471a8e4d1ccb", + "filename": "random/13561.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13561.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13561.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13561.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17508" + }, + { + "sha": "8840d1b1338266f480151c179427ca2c00fc918b", + "filename": "random/13624.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13624.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13624.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13624.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27555" + }, + { + "sha": "7404e68b8aa642ef4cb71874a41ce257f4bac385", + "filename": "random/13632.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13632.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13632.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13632.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5826" + }, + { + "sha": "8d38d80416dbdabe6a10aa5d627f4a5795ee24a5", + "filename": "random/13687.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13687.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13687.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13687.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4707" + }, + { + "sha": "4b05652d17b4559b1ce828286ce57adc141e96f0", + "filename": "random/13688.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13688.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13688.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13688.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14601" + }, + { + "sha": "fedfc77fe06a626ccba2788976e9f8f3ac456961", + "filename": "random/1369.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1369.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1369.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1369.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30779" + }, + { + "sha": "24bfa7ba705b956e24ea78ad24acb13b44342c7f", + "filename": "random/13690.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13690.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13690.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13690.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17976" + }, + { + "sha": "9eb7ef36419ce6ab19cc29b8e2d711a2fd2e24fb", + "filename": "random/138.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F138.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F138.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F138.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29110" + }, + { + "sha": "a9497ce39b1c77399ae4d18170bae590fd589463", + "filename": "random/13855.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13855.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13855.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13855.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32119" + }, + { + "sha": "519124ef06879ce0277299e8266754c0e3818cd5", + "filename": "random/13858.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13858.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13858.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13858.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19986" + }, + { + "sha": "5fb5f3ef7c552d40bf879319849c0c3ab3632589", + "filename": "random/13895.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13895.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13895.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13895.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16046" + }, + { + "sha": "4bfcaa645630d3b54e8644f620f754944a91a8ad", + "filename": "random/13959.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13959.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13959.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13959.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6982" + }, + { + "sha": "41f2d300887b34b50bf7920a8c6ca32cec4d3434", + "filename": "random/14040.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14040.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14040.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14040.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6009" + }, + { + "sha": "5dedbc6fa02c3cc0522ff9e4ba458cba1663d0f8", + "filename": "random/14048.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14048.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14048.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14048.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23609" + }, + { + "sha": "655b7b967197287b8c3f56177365d3445fef590b", + "filename": "random/14071.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14071.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14071.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14071.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26568" + }, + { + "sha": "e546a9546ba594a14926ceb09763d4cbe05e7d90", + "filename": "random/14079.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14079.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14079.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14079.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31441" + }, + { + "sha": "1d16a6b49d637f6278456ccd2db008fb189a8759", + "filename": "random/14118.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14118.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14118.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14118.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8195" + }, + { + "sha": "e4d301eed3ae52b78aa0f554720908640bb9eafe", + "filename": "random/14126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20023" + }, + { + "sha": "57d73c9fe6acf1d0c502f82073cbe0a4688fcb15", + "filename": "random/1420.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1420.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1420.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1420.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24331" + }, + { + "sha": "def16005beb64a19d94d8b6fc8e1101ad1665b3d", + "filename": "random/14200.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14200.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14200.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14200.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8179" + }, + { + "sha": "f3f8990db48afa944f8b7d67094e2b75f086ef0c", + "filename": "random/14279.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14279.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14279.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14279.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14141" + }, + { + "sha": "dda59effd6bec6eb3887884b4ab6911f886bfbc4", + "filename": "random/1428.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1428.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1428.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1428.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31604" + }, + { + "sha": "ee5c5adcba0f00cd28a67fbd47bbf85dfcb9b9d5", + "filename": "random/14352.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14352.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14352.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14352.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23270" + }, + { + "sha": "188a3957e0dd32b62d1472704f7f43996cddfc47", + "filename": "random/14366.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14366.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14366.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14366.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14615" + }, + { + "sha": "46a1e0753d0b594d53efc6025a50eb92d6a7e6c0", + "filename": "random/1440.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1440.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1440.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1440.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9689" + }, + { + "sha": "c8498e3241fe26197226caf8f4f4c4b9bbb71851", + "filename": "random/14448.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14448.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14448.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14448.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26506" + }, + { + "sha": "26ce5fe233906f2c7b96206b925cabce702341f4", + "filename": "random/14504.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14504.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14504.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14504.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6228" + }, + { + "sha": "e05d7e09ca23acb331bc71c9177910ffe3aed3ce", + "filename": "random/14521.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14521.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14521.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14521.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24652" + }, + { + "sha": "5b6bd6d05af0b858abfe5c0b884ef9d0a0c35159", + "filename": "random/14680.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14680.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14680.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14680.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7267" + }, + { + "sha": "cf3f777f2521eceebedab2afa1df36e15d9b0536", + "filename": "random/14703.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14703.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14703.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14703.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9170" + }, + { + "sha": "8d957a49943c2018de079e30fb076695f38e9e8b", + "filename": "random/14704.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14704.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14704.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14704.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23617" + }, + { + "sha": "1e13fe97b9a706d32ecdfc6fb1208e0a5fc34548", + "filename": "random/14723.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14723.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14723.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14723.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22905" + }, + { + "sha": "b9b885ab071b23269001bdebc2b250015c7f25e9", + "filename": "random/14741.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14741.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14741.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14741.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6031" + }, + { + "sha": "f57caa331062585edb9cf1b4fb813a7b4c6ab4f0", + "filename": "random/14778.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14778.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14778.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14778.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20749" + }, + { + "sha": "eefbcda642d34ea7fdd8809785882b648e6cda67", + "filename": "random/14804.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14804.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14804.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14804.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26089" + }, + { + "sha": "8c0653ad445aee37e8db421d3d48139e382beb54", + "filename": "random/14834.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14834.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14834.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14834.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32080" + }, + { + "sha": "db638bdbcbe80d9c598e9f5f863bac217afde0c0", + "filename": "random/14839.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14839.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14839.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14839.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8302" + }, + { + "sha": "aa87d5acfbd3b859590b1f75465cb058f334502f", + "filename": "random/14930.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14930.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14930.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14930.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12098" + }, + { + "sha": "556927fab9e930ecb5df5869d37f6447b4ec106f", + "filename": "random/14931.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14931.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14931.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14931.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12225" + }, + { + "sha": "803389ff9f51be0a2acfa5cfba1cad825050c4d4", + "filename": "random/1501.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1501.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1501.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1501.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28472" + }, + { + "sha": "ad71acb8a1ceae9098a200b342aae33a7b4eeac5", + "filename": "random/15012.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15012.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15012.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15012.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16654" + }, + { + "sha": "126b9d2a54a0fb15fb395774408bd8fc9f392563", + "filename": "random/15045.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15045.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15045.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15045.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13708" + }, + { + "sha": "bce7cf71880861fa00bf7a45e84141a764a0711a", + "filename": "random/15056.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15056.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15056.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15056.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16424" + }, + { + "sha": "f2f440eb13f87587ce3ca23fbbbb69c78ca450f1", + "filename": "random/15072.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15072.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15072.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15072.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9602" + }, + { + "sha": "048efdb52e2be816f8d83a4ca962ead0b853ccf8", + "filename": "random/15111.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15111.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15111.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15111.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+919" + }, + { + "sha": "105b190b990122f3c5ee1ea89dea833f364b2a09", + "filename": "random/15167.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15167.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15167.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15167.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32394" + }, + { + "sha": "3ca932e6958d1126c324244bc348a16a10687817", + "filename": "random/15181.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15181.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15181.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15181.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8840" + }, + { + "sha": "2603e5a5c0a181a990ee5030104457142c0073c5", + "filename": "random/15205.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15205.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15205.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15205.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15586" + }, + { + "sha": "d3ea9f5793238e330f94db2f191515684aa1bf59", + "filename": "random/15209.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15209.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15209.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15209.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23970" + }, + { + "sha": "608a55039e440cd3bcbee71c9e02a574f265522e", + "filename": "random/15329.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15329.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15329.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15329.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28374" + }, + { + "sha": "f5bb9c530258507476537a3198a7b908820dfa4e", + "filename": "random/15345.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15345.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15345.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15345.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19536" + }, + { + "sha": "459d38138452b55d7c2e3413e5e5634cf631cf28", + "filename": "random/15349.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15349.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15349.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15349.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32601" + }, + { + "sha": "8392dfc53668d19e774b85a11c47d5d7cbbc9343", + "filename": "random/15410.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15410.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15410.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15410.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15939" + }, + { + "sha": "cba04597815c4b218efcc398da12cef381e57184", + "filename": "random/15478.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15478.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15478.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15478.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29327" + }, + { + "sha": "fae180cf24a8ba6697114984b86ed8952a187043", + "filename": "random/15487.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15487.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15487.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15487.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29247" + }, + { + "sha": "df13e00702ad75a7790aa8dc82bb37fad0f2436c", + "filename": "random/1549.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1549.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1549.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1549.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31608" + }, + { + "sha": "8f32f885403ebfb42e2c61a2574fed20b3b3a7a8", + "filename": "random/15543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13792" + }, + { + "sha": "a9ae4798040f3beaf382f0e2a47e3405fba90e85", + "filename": "random/15544.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15544.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15544.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15544.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2258" + }, + { + "sha": "1f1d3a8a62db3375caf52663947b3121d45b2d94", + "filename": "random/15552.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15552.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15552.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15552.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10766" + }, + { + "sha": "2ebd3a0c97f42f839cf6479f837ccab04466932c", + "filename": "random/1557.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1557.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1557.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1557.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+945" + }, + { + "sha": "848b9f4e4c824bb8bc5131c8aa23f6ef4a3e6720", + "filename": "random/15575.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15575.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15575.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15575.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8710" + }, + { + "sha": "da989926c1a93478778f30e211b62ff56e6bd349", + "filename": "random/1559.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1559.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1559.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1559.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15755" + }, + { + "sha": "8ebbef08979b67a19391f05d81bc1498d399151e", + "filename": "random/15630.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15630.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15630.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15630.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12166" + }, + { + "sha": "81dfdfd15f461d5304a6a16cc2255bf18ae5705b", + "filename": "random/15666.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15666.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15666.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15666.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31000" + }, + { + "sha": "76e8ecbc6ac1ef0565ad48b3a34c6e3e3cbafd67", + "filename": "random/15668.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15668.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15668.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15668.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13338" + }, + { + "sha": "6d5177e445af0445aa76c3e54405b9ff9af6a39c", + "filename": "random/15675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1082" + }, + { + "sha": "b76f96d7b79c0a523e9a444a0a9ace975a778f07", + "filename": "random/15721.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15721.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15721.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15721.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4906" + }, + { + "sha": "9cdbe12d23720d00e11967f1bb4fd52353b7e35b", + "filename": "random/15724.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15724.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15724.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15724.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16803" + }, + { + "sha": "579f90d67174930f922b51f3b8924d7fac3541ae", + "filename": "random/15735.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15735.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15735.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15735.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31376" + }, + { + "sha": "7743c61bc26d28b2bff2974611987127f55e7277", + "filename": "random/15771.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15771.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15771.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15771.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6910" + }, + { + "sha": "df3e459afacedd61f7b198a017177ca972278180", + "filename": "random/15814.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15814.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15814.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15814.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28885" + }, + { + "sha": "3a83c78b94577dec9df12295983aa9e656ff6506", + "filename": "random/15828.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15828.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15828.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15828.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13167" + }, + { + "sha": "a80b6f961e6c0ea08e62fe1ceb3861ff1b8e0b1b", + "filename": "random/15857.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15857.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15857.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15857.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4420" + }, + { + "sha": "069e415a5e16959b0c0302833a93e3d8a1572b8e", + "filename": "random/15876.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15876.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15876.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15876.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22441" + }, + { + "sha": "bf6950a47c65da23bed8e8fd06e9744df37cbb0f", + "filename": "random/15899.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15899.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15899.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15899.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3387" + }, + { + "sha": "aed450155b53e8b4d19bfd76d2cb7aac07161816", + "filename": "random/15900.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15900.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15900.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15900.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13763" + }, + { + "sha": "a41893f99f90e718f2ac8bb7c179267f8678687b", + "filename": "random/15929.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15929.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15929.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15929.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20462" + }, + { + "sha": "757fa317e58fcd99c0eb5fc09944283aae2bdf63", + "filename": "random/15982.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15982.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15982.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15982.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17078" + }, + { + "sha": "edfdf9504569fc6b6ff4bdc13cacfaad86af72d9", + "filename": "random/15988.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15988.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15988.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15988.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11708" + }, + { + "sha": "14b82c0eb857f12c38674dc4e3bed397484a74cc", + "filename": "random/1602.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1602.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1602.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1602.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30806" + }, + { + "sha": "48e0848b00c8402fff7884c067f4feb49d8d417e", + "filename": "random/16066.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16066.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16066.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16066.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19390" + }, + { + "sha": "c9b1b7c81ca42077959798ece254c8356ea05d5e", + "filename": "random/16141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3061" + }, + { + "sha": "eb34a7c79c0163b5eb54ded5724bf2eb5d0e74c8", + "filename": "random/16147.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16147.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16147.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16147.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29863" + }, + { + "sha": "e397113de20e34659b8e4a371ec1cb6a01975119", + "filename": "random/16299.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16299.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16299.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16299.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31854" + }, + { + "sha": "15f22840aaa1958326336e9b022c9f39f2d76318", + "filename": "random/16345.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16345.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16345.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16345.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14278" + }, + { + "sha": "91d29eedca13a8de64452768e8fcea1a6c7fcf5a", + "filename": "random/16367.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6222" + }, + { + "sha": "4946b5fbc1da2a12ca2aad3ad3bb0e4e9ea6c102", + "filename": "random/16634.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16634.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16634.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16634.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30392" + }, + { + "sha": "32950588a3a8fcebe54c86da9f603a2ce2212689", + "filename": "random/16756.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16756.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16756.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16756.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17142" + }, + { + "sha": "fa365d023484526dfb2cac67bd88cdb00cb875d1", + "filename": "random/16787.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16787.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16787.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16787.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15528" + }, + { + "sha": "ed0aba6d721ed4e46615c55c84f6b60205b39b71", + "filename": "random/168.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F168.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F168.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F168.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3749" + }, + { + "sha": "a35854776a38a4a88aaf1e47be08403582d0e858", + "filename": "random/1689.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1689.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1689.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1689.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4201" + }, + { + "sha": "9a3b6c5527bb66f096b783052c038a490277dc76", + "filename": "random/16913.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16913.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16913.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16913.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16269" + }, + { + "sha": "67cd4cb15b58c072f5c1590357f898e3490a65fd", + "filename": "random/16940.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16940.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16940.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16940.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28296" + }, + { + "sha": "a50b24c46a189542fb34897e4a7efb185982b41b", + "filename": "random/16948.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16948.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16948.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16948.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27210" + }, + { + "sha": "3a695d2c312b8750f7ce5fa854c08d8ede7f82b9", + "filename": "random/17043.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17043.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17043.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17043.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18481" + }, + { + "sha": "66cfe99515a7c202221157773e4be98d9dc411b9", + "filename": "random/1709.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1709.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1709.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1709.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7525" + }, + { + "sha": "56c905831364abce8f5e88ecaf33d5da3519b628", + "filename": "random/17205.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17205.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17205.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17205.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14309" + }, + { + "sha": "400354d6f22d25beab771ed6a460b3b8084045ce", + "filename": "random/1729.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1729.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1729.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1729.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29605" + }, + { + "sha": "776bb6d134bd2e733fb18d41f16d0c36a52284b9", + "filename": "random/17305.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17305.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17305.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17305.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21381" + }, + { + "sha": "a5c3fde3c17743db5d582d70778c79931da584ec", + "filename": "random/17352.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17352.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17352.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17352.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+373" + }, + { + "sha": "596134a7ce04956e7d8d141d159f12e822875e4b", + "filename": "random/17419.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17419.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17419.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17419.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18602" + }, + { + "sha": "db0e38b0ee1350806da6f95819bdb2d3eae403b7", + "filename": "random/1742.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1742.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1742.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1742.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2045" + }, + { + "sha": "b1e142d995fa14627074fc15981b8f3225c0f2d4", + "filename": "random/17426.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17426.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17426.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17426.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1584" + }, + { + "sha": "aeaee565f96102a6a20b9a354dec483498a8bf17", + "filename": "random/1748.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1748.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1748.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1748.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2985" + }, + { + "sha": "18821c947f53562d7a44727501de16849fafcb1c", + "filename": "random/17483.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17483.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17483.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17483.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15707" + }, + { + "sha": "8fdd8b5e78e72125df77d4df0b16524e4313740a", + "filename": "random/17546.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17546.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17546.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17546.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31710" + }, + { + "sha": "ffba30626f6e6f535b279009a701c74704deaf35", + "filename": "random/17580.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17580.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17580.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17580.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31182" + }, + { + "sha": "7c3005f03680f0a302f4cc669482218b8f7345d4", + "filename": "random/17704.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17704.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17704.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17704.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32170" + }, + { + "sha": "7f8678a7c58fe0ea1b64c2f10bc74d37671f69fd", + "filename": "random/17824.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17824.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17824.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17824.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13096" + }, + { + "sha": "99f88f8be65412a6f5a9cc6944cb6cb14ad6c0a2", + "filename": "random/17829.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17829.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17829.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17829.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10932" + }, + { + "sha": "627b39e1378568b66d1c0c2f2f934937bbbf2bda", + "filename": "random/18049.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18049.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18049.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18049.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3062" + }, + { + "sha": "cdaa99b540e82d22b47798125e7736f5998d595a", + "filename": "random/18137.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18137.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18137.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18137.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12742" + }, + { + "sha": "2eb76e72e6c68fdcd61190488f3cd3942f098bfb", + "filename": "random/18141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12605" + }, + { + "sha": "557cea072dcbe7e72f24d31878d2e7a49769e07b", + "filename": "random/18156.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25409" + }, + { + "sha": "ee97dd04ced3a38169235397aa38bca34117ee5d", + "filename": "random/18158.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18158.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18158.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18158.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30885" + }, + { + "sha": "f4cac6ae1ed2180745fa82eb80caed34e2d753bf", + "filename": "random/18167.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18167.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18167.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18167.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9610" + }, + { + "sha": "1b800d417465778f0c38d3311983689b335ad441", + "filename": "random/18175.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18175.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18175.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18175.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7567" + }, + { + "sha": "e961d1fe2782e4e6072b172fa260c4791253ec87", + "filename": "random/18217.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18217.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18217.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18217.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17805" + }, + { + "sha": "1e5f294b61d35e398591e27a65d2c21c51dfee59", + "filename": "random/18240.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18240.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18240.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18240.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6503" + }, + { + "sha": "a8a58af06d23444bc7eaf40f155185e465142874", + "filename": "random/18322.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18322.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18322.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18322.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14810" + }, + { + "sha": "5cc796bc33729168fd2f77494aa6f9c932a44e56", + "filename": "random/18335.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18335.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18335.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18335.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6668" + }, + { + "sha": "5e19d047f41d753c73f3fb53144c566fa6982afc", + "filename": "random/18415.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18415.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18415.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18415.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26337" + }, + { + "sha": "35843b2696556ef7c393f19cac8b807af164b54c", + "filename": "random/18424.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18424.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18424.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18424.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17002" + }, + { + "sha": "6bd823fbeb53459108b7e42c171e7b2c85772007", + "filename": "random/18425.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18425.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18425.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18425.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18351" + }, + { + "sha": "500569dc4ee8b30c711848c813603ee05d92041c", + "filename": "random/18478.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18478.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18478.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18478.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12436" + }, + { + "sha": "adc7a5a8ef7c120c934704849e15379df77e1e87", + "filename": "random/18510.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18510.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18510.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18510.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23806" + }, + { + "sha": "fc4c10bd6a21de414ad4e7db16ba683b8f85ec71", + "filename": "random/18535.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18535.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18535.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18535.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7097" + }, + { + "sha": "179dae4a826ba8c007c506d014d16f5340caeaca", + "filename": "random/1861.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1861.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1861.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1861.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23370" + }, + { + "sha": "75132fa7768afcc6b9dde9332c6996b2277c783b", + "filename": "random/18626.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18626.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18626.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18626.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26908" + }, + { + "sha": "3d5ab518e1fb1845f5b68271b891a84a7d15747a", + "filename": "random/18629.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18629.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18629.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18629.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30023" + }, + { + "sha": "750c44b31236a0b81684014d04af055853e85c4c", + "filename": "random/1864.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1864.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1864.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1864.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30652" + }, + { + "sha": "049de3d31353c49bbe6c56ba699ed454c2812f5e", + "filename": "random/18670.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18670.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18670.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18670.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32250" + }, + { + "sha": "47499bca2639b021584787b49014d0827913f29d", + "filename": "random/1873.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1873.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1873.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1873.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13795" + }, + { + "sha": "08594e77eba0c79ea0b7955e96c09024ec66177f", + "filename": "random/1877.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1877.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1877.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1877.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20793" + }, + { + "sha": "0262e5efb41367f424300e98bad24571635f8501", + "filename": "random/18852.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1506" + }, + { + "sha": "b26d474ac80a3833329b9e586efa54e22d3c6fe1", + "filename": "random/18862.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18862.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18862.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18862.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5569" + }, + { + "sha": "f1281c35108ae4e8a9d8822e27bbd67045dfc4aa", + "filename": "random/18953.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18953.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18953.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18953.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21712" + }, + { + "sha": "4b92bb132c0abf33453d4b65a834743be0ca527f", + "filename": "random/19013.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19013.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19013.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19013.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13110" + }, + { + "sha": "9c95d8d2edb2ec746fa4b34d2d81887a76bf34f1", + "filename": "random/191.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F191.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F191.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F191.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9274" + }, + { + "sha": "92048a505a35e670a30c72fb6448b65d08646e8f", + "filename": "random/19131.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19131.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19131.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19131.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5629" + }, + { + "sha": "8d3be532de35b925ba2efc2cd97dbb5d85db5f1a", + "filename": "random/19175.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19175.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19175.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19175.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25814" + }, + { + "sha": "d1b8e2f29a872729b992e55caf5309c0f04d7035", + "filename": "random/19189.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19189.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19189.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19189.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1660" + }, + { + "sha": "0be1ce65f9d10f22ad32ca22b541cc94ca1474ca", + "filename": "random/19234.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19234.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19234.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19234.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23141" + }, + { + "sha": "442711b3ea4c7f7b15f3547d49a1f554fd7906fc", + "filename": "random/19258.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19258.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19258.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19258.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32503" + }, + { + "sha": "73f10fb8f3afb92d7fbeafb417f5e556daa2d429", + "filename": "random/19309.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19309.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19309.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19309.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26746" + }, + { + "sha": "59ec8b5d38d2ba2352f27db66b46f57dfd18bcc2", + "filename": "random/19368.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19368.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19368.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19368.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21954" + }, + { + "sha": "340b3519a5d90e562d088561582bcf18c32734d0", + "filename": "random/19385.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19385.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19385.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19385.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1576" + }, + { + "sha": "bba5da15f401cf8d0a0dd16152dd4a7484127528", + "filename": "random/19469.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19469.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19469.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19469.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1958" + }, + { + "sha": "d80e90bb407d3b7a182f7d771d46bb67e0408609", + "filename": "random/19490.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19490.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19490.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19490.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30597" + }, + { + "sha": "b4e485a6bbe1596ca126b755393d52e6da1bd0b9", + "filename": "random/19532.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19532.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19532.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19532.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17318" + }, + { + "sha": "2bdc6533bec75e2127a1315799e96da11004bc01", + "filename": "random/19536.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19536.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19536.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19536.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7000" + }, + { + "sha": "e8be186012394c5a1028872dcfbb625acc9dce06", + "filename": "random/19673.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19673.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19673.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19673.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5493" + }, + { + "sha": "4bc6ac2684e29c5cb34697fbae29e006d052c672", + "filename": "random/19677.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19677.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19677.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19677.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25023" + }, + { + "sha": "3fd30e580586056557c6ecabebdc4b66402e6bb8", + "filename": "random/19678.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19678.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19678.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19678.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30663" + }, + { + "sha": "1f9839b26725c0e95f19091ef7b0cf851a7938d2", + "filename": "random/19739.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19739.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19739.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19739.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21215" + }, + { + "sha": "9c63f04035a9de6a3e9ea3314446006ed5dfbfc3", + "filename": "random/19757.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19757.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19757.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19757.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15202" + }, + { + "sha": "5fdb783e5262ec199d6b91b0c0113d28a6605c87", + "filename": "random/19912.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19912.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19912.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19912.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28881" + }, + { + "sha": "fd6169b6e3364b2dd0a033d24965c9dbab9c6f9a", + "filename": "random/19922.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18023" + }, + { + "sha": "02b9e1eb18cd39a78af33d7559d7ed2ba8934b8c", + "filename": "random/19952.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19952.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19952.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19952.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10334" + }, + { + "sha": "c45c303affc42adad9d559b17e17537c9f778f57", + "filename": "random/20007.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20007.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20007.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20007.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27298" + }, + { + "sha": "b630da6c8469ff5852c37f9f1e1f1d27bf209a0c", + "filename": "random/20050.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20050.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20050.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20050.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13806" + }, + { + "sha": "cef7c446ac227cf550615950929a840f9a4d2320", + "filename": "random/20058.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20058.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20058.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20058.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16588" + }, + { + "sha": "07e62978eb8f8989b5f4d4d3241d9590bee7aadd", + "filename": "random/20073.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20073.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20073.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20073.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27692" + }, + { + "sha": "3a5c1c66c27aacfff46ea16d7b28fc6c908dd531", + "filename": "random/20173.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20173.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20173.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20173.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6577" + }, + { + "sha": "b57252391c66ad28b2c83dd6f4ef9180cfc78eef", + "filename": "random/20240.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20240.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20240.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20240.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8357" + }, + { + "sha": "570a868e942df851e969b611ad4d6d3ae58420f8", + "filename": "random/20383.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5421" + }, + { + "sha": "fb5ec0567573771fa07af43032663a1fd581b9f9", + "filename": "random/20416.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20416.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20416.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20416.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25707" + }, + { + "sha": "20de14b506ee8d309eb7233a9e23e87baee6ed49", + "filename": "random/20543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4337" + }, + { + "sha": "a70b62183792e449b4a909cf7e4846716c08542e", + "filename": "random/2059.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2059.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2059.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2059.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23031" + }, + { + "sha": "f339067f32b5c98e86d3225a4cc8b007a885514a", + "filename": "random/20682.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20682.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20682.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20682.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18107" + }, + { + "sha": "e83eb2865aca6532dec029d3de81ebb18a1b7996", + "filename": "random/20811.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20811.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20811.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20811.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14224" + }, + { + "sha": "33d6168ad20bb6e5e2366a986529ad83f308c7c9", + "filename": "random/20904.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20904.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20904.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20904.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6856" + }, + { + "sha": "193548119a9173b05da0aef418af8f3a58d02068", + "filename": "random/20922.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18291" + }, + { + "sha": "79bf159caab0e7a18945513e8daeee57e7d5756f", + "filename": "random/20949.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20949.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20949.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20949.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14734" + }, + { + "sha": "682f073dce810db438b1a35398f25967a72028c9", + "filename": "random/20976.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20976.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20976.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20976.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23081" + }, + { + "sha": "43f26745913d68bacc27482c4b1af4efe4142a49", + "filename": "random/21000.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21000.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21000.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21000.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22794" + }, + { + "sha": "e4bace5a356dd825b4d7dd7bd262e982c515cc2f", + "filename": "random/21014.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21014.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21014.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21014.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9519" + }, + { + "sha": "991b11f5d755030ec20f33c447af96854083d8e6", + "filename": "random/2110.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2110.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2110.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2110.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25885" + }, + { + "sha": "06cd33b3a2a647062ea186abdec79610b5af9410", + "filename": "random/21111.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21111.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21111.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21111.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15928" + }, + { + "sha": "a20e18243e7cbb44a3f86420b100966807a6fb52", + "filename": "random/21128.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21128.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21128.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21128.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20486" + }, + { + "sha": "6ff058e4ba7b7a6691056f727e3007893b4c5033", + "filename": "random/21164.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21164.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21164.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21164.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22671" + }, + { + "sha": "6ba0028cf1f009c82fbd6eaf54e98b67fd5186e5", + "filename": "random/21304.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21304.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21304.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21304.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17324" + }, + { + "sha": "ec42e6d49a9f887b4263755068bb31dfe6ad2a7e", + "filename": "random/21357.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21357.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21357.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21357.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2142" + }, + { + "sha": "38c11d1503cbd6973e748cc45878e6f4106597fa", + "filename": "random/21360.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21360.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21360.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21360.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19846" + }, + { + "sha": "3e481871272d4e22a7b824c87025ca522e71b4be", + "filename": "random/21459.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21459.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21459.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21459.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30737" + }, + { + "sha": "33949a58ac9fa6e69522c657016dcbfee8605464", + "filename": "random/21707.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21707.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21707.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21707.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15267" + }, + { + "sha": "a37e2a8309c39263a54e692492f3702d76325d15", + "filename": "random/21712.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21712.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21712.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21712.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5980" + }, + { + "sha": "50e370fcddd8f589d6fc6c22d78674028e7461cc", + "filename": "random/21724.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21724.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21724.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21724.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32242" + }, + { + "sha": "d3c134636374c2fd26a47d3a6f2ecdf07343cd66", + "filename": "random/21835.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21835.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21835.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21835.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21517" + }, + { + "sha": "e98bb82afe3002e14f6ae3d044d9828c40b9cdde", + "filename": "random/21847.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21847.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21847.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21847.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17232" + }, + { + "sha": "caf313abb1c80f6b2e59c44d2f0e9981ef6ff374", + "filename": "random/21875.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21875.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21875.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21875.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23561" + }, + { + "sha": "f3e93d79f9817ea060d72204b7bf8167eadb23ad", + "filename": "random/21881.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21881.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21881.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21881.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13925" + }, + { + "sha": "217ec973caa3d4aa7c7c278d405f20650c2ff51d", + "filename": "random/21884.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21884.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21884.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21884.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5649" + }, + { + "sha": "c5162e2c5c4e7d4d60550ba33dc952af16add899", + "filename": "random/21987.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21987.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21987.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21987.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19429" + }, + { + "sha": "df616618d257ef10208f6b22c4a769e1df7b113a", + "filename": "random/22014.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22014.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22014.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22014.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23268" + }, + { + "sha": "55c23b97e1a7a589660f86a22b081a883f89055f", + "filename": "random/22046.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22046.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22046.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22046.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25251" + }, + { + "sha": "0fc1b9e382e36a6b04ce846c90a133ad6b8bdfbd", + "filename": "random/22126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20396" + }, + { + "sha": "531f73c0c781df7282829f153be9072d0009f3ad", + "filename": "random/22154.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22154.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22154.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22154.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13161" + }, + { + "sha": "263896ceab90da18101055fb8273ddccb3f0f8ed", + "filename": "random/22168.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22168.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22168.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22168.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21523" + }, + { + "sha": "0b869f9e5a9949ea191494f283a2c8bce41ed43a", + "filename": "random/22200.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22200.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22200.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22200.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18191" + }, + { + "sha": "cf8e983961502b43f5205d49560d4d451852e944", + "filename": "random/22215.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22215.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22215.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22215.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26450" + }, + { + "sha": "aa0787943184ec8d17333e04f16a189893f84ea3", + "filename": "random/22233.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22233.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22233.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22233.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8297" + }, + { + "sha": "112df5f7d17813c08048c0d709c1ff5f4be37010", + "filename": "random/22255.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22255.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22255.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22255.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26622" + }, + { + "sha": "9adbd23923bacef95f462638443fe16f45bf2f4b", + "filename": "random/22264.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22264.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22264.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22264.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2042" + }, + { + "sha": "fbaf601af1b23a27736ad529def8ac5bd174add9", + "filename": "random/22332.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22332.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22332.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22332.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26150" + }, + { + "sha": "86761e45f7a9131560207db0f64c51901924b999", + "filename": "random/22364.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22364.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22364.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22364.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9671" + }, + { + "sha": "966e333dd72d7a267604b48bc868e8e92be69149", + "filename": "random/22416.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22416.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22416.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22416.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23309" + }, + { + "sha": "ee944c2d8f3450a4673ad71e82dd462828499131", + "filename": "random/22464.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22464.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22464.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22464.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10354" + }, + { + "sha": "8f901d83747ee20a19cbe4f199b083e5a3678c61", + "filename": "random/22516.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22516.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22516.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22516.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25397" + }, + { + "sha": "29235ffb78a1170c734cacea68d0a126028adc1d", + "filename": "random/22526.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22526.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22526.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22526.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4306" + }, + { + "sha": "e06108c0fa14137d39a66c5a45d58dbde7904cc6", + "filename": "random/22587.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22587.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22587.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22587.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+247" + }, + { + "sha": "731db4d71751d70fb93863e782c9b25a6f5af00e", + "filename": "random/22592.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22592.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22592.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22592.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22161" + }, + { + "sha": "d837ea78a0a321485e60d977bd887a157d0ab6f3", + "filename": "random/22613.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22613.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22613.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22613.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5608" + }, + { + "sha": "8df6f8a0aa30cb4c198e9f23d6ab2d76128867a8", + "filename": "random/22649.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22649.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22649.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22649.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19069" + }, + { + "sha": "2a1922f8e90baacf7ef0e8b64172916b32c72daa", + "filename": "random/22659.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22659.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22659.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22659.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24276" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json new file mode 100644 index 0000000000..591a59f8d5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json @@ -0,0 +1,3686 @@ +{ + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "node_id": "C_kwDOJzFPltoAKGI4MzgxMmFhNzZiYjdjM2M0M2RhOTZmYmY4YWVjMWU0NWRiODc2MjQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "message": "A commit with lots of files", + "tree": { + "sha": "6718afb2869b086c47122e4187b14585fed52644", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/6718afb2869b086c47122e4187b14585fed52644" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96" + } + ], + "stats": { + "total": 691, + "additions": 691, + "deletions": 0 + }, + "files": [ + { + "sha": "58109dfb98bafcd984fbeab28225453212473725", + "filename": "random/10054.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10054.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10054.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10054.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4202" + }, + { + "sha": "c1b93cca5c675c0ead59073b8c8040fe7fc32b3d", + "filename": "random/10083.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10083.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10083.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10083.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20054" + }, + { + "sha": "3d833d0152bb15e0fc639ebb5926fa5a7e9ba61b", + "filename": "random/10117.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10117.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10117.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10117.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7422" + }, + { + "sha": "8b7736421f3124c0c1383af38bd4a623f4f9ef6b", + "filename": "random/10129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31715" + }, + { + "sha": "280de93c82bb2da1d383f0933cc7d1889cd9966b", + "filename": "random/10271.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10271.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10271.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10271.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14188" + }, + { + "sha": "49bf8bf0b77b1c3e5069c60955cbf1568f95d800", + "filename": "random/10286.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10286.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10286.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10286.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16231" + }, + { + "sha": "caed6f18ea4a568375a67685116979faff41d8f3", + "filename": "random/1030.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1030.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1030.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1030.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20159" + }, + { + "sha": "f1bbeacd0b541b2be1b7c0df0601a3f26ad28791", + "filename": "random/1031.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1031.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1031.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1031.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26813" + }, + { + "sha": "2e442b4e1bebab2385081439658a98cf411a0838", + "filename": "random/10341.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10341.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10341.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10341.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26190" + }, + { + "sha": "db3ad957347f4c5735bdcd0edb989e266f52b09e", + "filename": "random/10390.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10390.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10390.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10390.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23726" + }, + { + "sha": "e775b2b9963d8917f408e67b83bc4efb1e074dd0", + "filename": "random/10461.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10461.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10461.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10461.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22930" + }, + { + "sha": "77de9266d3ef4cc7e6dfffbe194c8853ede9145c", + "filename": "random/10485.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10485.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10485.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10485.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1767" + }, + { + "sha": "b9423ab4e029e1247ccf5706b45a134fed986c5e", + "filename": "random/10562.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10562.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10562.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10562.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12336" + }, + { + "sha": "4d853e9b473b67d11c439ee543239eaa0fdd8c95", + "filename": "random/10618.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10618.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10618.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10618.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24556" + }, + { + "sha": "29988c80205f0718a61492794612ee7a9ab94fee", + "filename": "random/10675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+751" + }, + { + "sha": "24c133331a35c2fbc178d60ab0145dca1aba8084", + "filename": "random/10680.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10680.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10680.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10680.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14876" + }, + { + "sha": "2709a9818d75e0d66916d90662dcb0bcf2240ce1", + "filename": "random/1069.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1069.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1069.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1069.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17233" + }, + { + "sha": "e2de40278c03b0bab2ee0d3f9748d0d8eb168b5a", + "filename": "random/10925.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10925.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10925.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10925.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19949" + }, + { + "sha": "d2a032914a670901c68eda150909c6de4aa4e29e", + "filename": "random/10937.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10937.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10937.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10937.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23757" + }, + { + "sha": "af08b9088cf0ef87c7756330c0d03b98ff1af411", + "filename": "random/10959.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10959.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10959.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10959.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6483" + }, + { + "sha": "ee92ddfbb7d0bc7f8ff2d3a69df6c6402e68890a", + "filename": "random/10970.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10970.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F10970.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F10970.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19415" + }, + { + "sha": "a194806864cba3dbd597c840d399f157b7f16e73", + "filename": "random/11035.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11035.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11035.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11035.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12106" + }, + { + "sha": "ad58e907b52c0b3c802a3c1865d5fdbc7cc79c07", + "filename": "random/11062.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11062.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11062.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11062.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13075" + }, + { + "sha": "48abe000dd882219080c19912c549d35249f600f", + "filename": "random/11069.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11069.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11069.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11069.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19916" + }, + { + "sha": "20cc2a0e602e9f0484d024f810629d67aabf7cfc", + "filename": "random/11129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30263" + }, + { + "sha": "4c23fe508263f40344889258ded7d7b2a68baae4", + "filename": "random/11174.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11174.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11174.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11174.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7879" + }, + { + "sha": "aaed00b0188132192dec6bb5705d767a41ee020c", + "filename": "random/11234.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11234.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11234.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11234.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14332" + }, + { + "sha": "0ff5ad9b30431e05092954425645f050293c8813", + "filename": "random/11265.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11265.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11265.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11265.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2361" + }, + { + "sha": "10455291eb355cf2b0430dfd4bdf0d5fb951c30b", + "filename": "random/11267.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11267.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11267.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11267.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16882" + }, + { + "sha": "5257135e4e26840aff747cf4566e385f6e1d2152", + "filename": "random/11313.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11313.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11313.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11313.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16855" + }, + { + "sha": "d7a33ea4704b08e41ae10f1b4bb6e5f9b3f8f484", + "filename": "random/11343.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11343.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11343.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11343.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3297" + }, + { + "sha": "761fcd3ac2102706b66c0443712c3c4af9f42d9d", + "filename": "random/11348.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11348.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11348.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11348.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+499" + }, + { + "sha": "e758f9f21ed7b1bc331777e3e054e54d887aadfd", + "filename": "random/11360.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11360.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11360.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11360.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28204" + }, + { + "sha": "95f513b2a8750a50b3760a88a96a564f1f045742", + "filename": "random/11366.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11366.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11366.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11366.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30364" + }, + { + "sha": "d9062d27a112b79ad8c5d91dc7fe65e0422f809a", + "filename": "random/11466.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11466.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11466.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11466.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16660" + }, + { + "sha": "c49ee91c1b721157758d74d57e78be81db1cb47a", + "filename": "random/115.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F115.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F115.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F115.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32288" + }, + { + "sha": "f6f0b4a895689622132fdbe8f5ed16ba2781c737", + "filename": "random/11511.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11511.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11511.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11511.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28346" + }, + { + "sha": "5629b493867bcac1b0f62a11e8d1a9afe9040044", + "filename": "random/11519.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11519.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11519.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11519.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28752" + }, + { + "sha": "2573adf01667939eaa4d715ffe68c57002cb64d4", + "filename": "random/11574.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11574.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11574.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11574.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4182" + }, + { + "sha": "fcb5710b163fca50533a70130cc75ded08fbd1f3", + "filename": "random/11619.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11619.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11619.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11619.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14773" + }, + { + "sha": "fb5296e3e56435b7975a837bfe383d95b527b2b2", + "filename": "random/11668.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11668.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11668.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11668.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9493" + }, + { + "sha": "4146d1bfbc3866e9648d1caa68589c840a0959ee", + "filename": "random/11709.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11709.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11709.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11709.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20294" + }, + { + "sha": "80442778f7daab9583d7c13b2a4831baf64eb8d9", + "filename": "random/11740.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11740.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11740.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11740.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11493" + }, + { + "sha": "f4304ee3debbd9bcb2303428825e890855bb38f4", + "filename": "random/11761.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11761.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11761.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11761.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25927" + }, + { + "sha": "2ef4cc65da8682a143116b9317f66de29d699475", + "filename": "random/11783.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11783.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11783.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11783.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4393" + }, + { + "sha": "428a9a569ea0075b32d61e66379405f8e13c5221", + "filename": "random/11843.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11843.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11843.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11843.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11238" + }, + { + "sha": "8267ef1a708058427cb5d9574d3d69b7034fb893", + "filename": "random/11853.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11853.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11853.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11853.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24566" + }, + { + "sha": "835c5f1dcd337466bbb385de656b22792b45416a", + "filename": "random/11978.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11978.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F11978.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F11978.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+973" + }, + { + "sha": "b894075a640b9126c67e6b6c41acca968ade9368", + "filename": "random/12017.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12017.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12017.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12017.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21018" + }, + { + "sha": "e9feae6e323e01d13d50f203534db23b788ad612", + "filename": "random/12082.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12082.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12082.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12082.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22199" + }, + { + "sha": "9d1731d8adc8f6eaa07228211e847b6f4b61fb61", + "filename": "random/12126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1642" + }, + { + "sha": "f9ce2ceb82c343ebc87a97008d47ac22f2ebf673", + "filename": "random/12214.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12214.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12214.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12214.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13695" + }, + { + "sha": "6265238261ba6081917451d7c7688a1bd603cca9", + "filename": "random/12222.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12222.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12222.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12222.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31039" + }, + { + "sha": "ad1c0201ef68e51c79930cbe19c86fc102b1cb88", + "filename": "random/12233.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12233.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12233.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12233.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22035" + }, + { + "sha": "ce0a11d0eb149935469242f1e5bebd57aa2cd493", + "filename": "random/12443.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12443.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12443.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12443.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1367" + }, + { + "sha": "1cd5130788b06db0d1c23854d1b6d5840e5c6283", + "filename": "random/12476.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12476.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12476.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12476.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21439" + }, + { + "sha": "2f66db150b1ed915aced0c068fd15a7eaa3989b6", + "filename": "random/1248.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1248.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1248.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1248.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15137" + }, + { + "sha": "0b7138ded57a23662b330dca1a29223ac878e4bb", + "filename": "random/12513.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12513.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12513.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12513.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22595" + }, + { + "sha": "a272df67cdd076ce0b5a722c38129365ba3ea9af", + "filename": "random/12569.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12569.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12569.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12569.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22499" + }, + { + "sha": "b790b6934314afa91a63fad94d4ddfa5e9cc056b", + "filename": "random/12570.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12570.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12570.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12570.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22150" + }, + { + "sha": "9a3585133d4416d05db47b39b9104f38de4e9330", + "filename": "random/12606.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12606.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12606.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12606.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17537" + }, + { + "sha": "8503f29cee34618e65ac5cf3c9eba836710b8697", + "filename": "random/12650.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12650.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12650.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12650.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7649" + }, + { + "sha": "ee093ac5aaf62ae0ed1b0e335d77a2987e498d3d", + "filename": "random/12675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12796" + }, + { + "sha": "643216e08df1a769631bf1b704b2243402356513", + "filename": "random/12708.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12708.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12708.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12708.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29933" + }, + { + "sha": "dcda5ac69fe7daa8e30525089b5440ee16236a28", + "filename": "random/12715.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12715.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12715.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12715.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17294" + }, + { + "sha": "94907966eaaf3b65ac50ba97d0a859edbcb0939e", + "filename": "random/12752.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12752.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12752.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12752.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28091" + }, + { + "sha": "815094360f45bd7324342f1a05f58dc439980c84", + "filename": "random/12814.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12814.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12814.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12814.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18312" + }, + { + "sha": "2d984996c225a626f1016658ccc79678e3c2a499", + "filename": "random/12834.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12834.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12834.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12834.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17504" + }, + { + "sha": "6e5fd786dd4a3d1978d93a02caff6cdec4cc7c81", + "filename": "random/12842.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12842.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12842.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12842.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29867" + }, + { + "sha": "7fba2b43771eec7be9298f8336f9a6cf52f159b0", + "filename": "random/12885.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12885.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12885.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12885.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+209" + }, + { + "sha": "20c89be1ef05fac1162b143d1f97f2eb3945e7ce", + "filename": "random/12913.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12913.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12913.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12913.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30996" + }, + { + "sha": "accf44d4842335ed03aee7843120dcf70daa67b8", + "filename": "random/12945.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12945.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F12945.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F12945.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1402" + }, + { + "sha": "419270dd5b881cd2c339c97632db332a10758c8e", + "filename": "random/13090.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13090.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13090.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13090.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30384" + }, + { + "sha": "165ef87e5427c30047073d8d763ef36335dac6db", + "filename": "random/13099.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13099.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13099.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13099.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20150" + }, + { + "sha": "27149576c254b367b0ca1327e4aa3a9ad9ee849a", + "filename": "random/13151.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13151.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13151.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13151.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2611" + }, + { + "sha": "a26a312b0d824e92eef87248511f892332b93aa6", + "filename": "random/13170.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13170.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13170.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13170.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32729" + }, + { + "sha": "02555d0b74881ab508bbf2027df7907b64379772", + "filename": "random/13199.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13199.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13199.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13199.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19091" + }, + { + "sha": "c48f9e045258746be228297abdb2ab587e5db7c3", + "filename": "random/13241.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13241.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13241.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13241.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+269" + }, + { + "sha": "0baf28e7dd9e728ac621da29d63f44b4b472d365", + "filename": "random/13266.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13266.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13266.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13266.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24504" + }, + { + "sha": "946caf00cf3699733cd90b18dcec3cecead48f94", + "filename": "random/13386.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13386.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13386.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13386.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8828" + }, + { + "sha": "882e3064dd2cde1768ad7ce94db9d2b8ac63d676", + "filename": "random/13387.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13387.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13387.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13387.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32068" + }, + { + "sha": "9f810330cbb38269b01d037ea61fb8ad5c8d753f", + "filename": "random/13399.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13399.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13399.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13399.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14580" + }, + { + "sha": "d90f2b1d5b5199b1dec442ae45e0a0fbd424f3ed", + "filename": "random/13444.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13444.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13444.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13444.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1026" + }, + { + "sha": "9b517ca72671b43836bc2a8dd3cb6a802750980b", + "filename": "random/13480.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13480.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13480.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13480.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18764" + }, + { + "sha": "17f03e10b2194865fdf989bfbaf2d46f5c82a0d2", + "filename": "random/13508.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13508.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13508.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13508.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3480" + }, + { + "sha": "3028632c3c90fb159c3256a6cd8b471a8e4d1ccb", + "filename": "random/13561.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13561.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13561.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13561.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17508" + }, + { + "sha": "8840d1b1338266f480151c179427ca2c00fc918b", + "filename": "random/13624.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13624.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13624.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13624.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27555" + }, + { + "sha": "7404e68b8aa642ef4cb71874a41ce257f4bac385", + "filename": "random/13632.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13632.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13632.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13632.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5826" + }, + { + "sha": "8d38d80416dbdabe6a10aa5d627f4a5795ee24a5", + "filename": "random/13687.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13687.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13687.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13687.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4707" + }, + { + "sha": "4b05652d17b4559b1ce828286ce57adc141e96f0", + "filename": "random/13688.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13688.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13688.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13688.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14601" + }, + { + "sha": "fedfc77fe06a626ccba2788976e9f8f3ac456961", + "filename": "random/1369.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1369.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1369.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1369.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30779" + }, + { + "sha": "24bfa7ba705b956e24ea78ad24acb13b44342c7f", + "filename": "random/13690.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13690.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13690.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13690.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17976" + }, + { + "sha": "9eb7ef36419ce6ab19cc29b8e2d711a2fd2e24fb", + "filename": "random/138.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F138.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F138.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F138.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29110" + }, + { + "sha": "a9497ce39b1c77399ae4d18170bae590fd589463", + "filename": "random/13855.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13855.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13855.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13855.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32119" + }, + { + "sha": "519124ef06879ce0277299e8266754c0e3818cd5", + "filename": "random/13858.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13858.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13858.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13858.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19986" + }, + { + "sha": "5fb5f3ef7c552d40bf879319849c0c3ab3632589", + "filename": "random/13895.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13895.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13895.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13895.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16046" + }, + { + "sha": "4bfcaa645630d3b54e8644f620f754944a91a8ad", + "filename": "random/13959.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13959.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F13959.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F13959.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6982" + }, + { + "sha": "41f2d300887b34b50bf7920a8c6ca32cec4d3434", + "filename": "random/14040.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14040.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14040.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14040.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6009" + }, + { + "sha": "5dedbc6fa02c3cc0522ff9e4ba458cba1663d0f8", + "filename": "random/14048.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14048.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14048.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14048.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23609" + }, + { + "sha": "655b7b967197287b8c3f56177365d3445fef590b", + "filename": "random/14071.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14071.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14071.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14071.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26568" + }, + { + "sha": "e546a9546ba594a14926ceb09763d4cbe05e7d90", + "filename": "random/14079.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14079.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14079.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14079.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31441" + }, + { + "sha": "1d16a6b49d637f6278456ccd2db008fb189a8759", + "filename": "random/14118.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14118.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14118.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14118.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8195" + }, + { + "sha": "e4d301eed3ae52b78aa0f554720908640bb9eafe", + "filename": "random/14126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20023" + }, + { + "sha": "57d73c9fe6acf1d0c502f82073cbe0a4688fcb15", + "filename": "random/1420.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1420.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1420.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1420.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24331" + }, + { + "sha": "def16005beb64a19d94d8b6fc8e1101ad1665b3d", + "filename": "random/14200.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14200.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14200.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14200.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8179" + }, + { + "sha": "f3f8990db48afa944f8b7d67094e2b75f086ef0c", + "filename": "random/14279.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14279.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14279.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14279.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14141" + }, + { + "sha": "dda59effd6bec6eb3887884b4ab6911f886bfbc4", + "filename": "random/1428.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1428.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1428.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1428.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31604" + }, + { + "sha": "ee5c5adcba0f00cd28a67fbd47bbf85dfcb9b9d5", + "filename": "random/14352.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14352.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14352.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14352.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23270" + }, + { + "sha": "188a3957e0dd32b62d1472704f7f43996cddfc47", + "filename": "random/14366.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14366.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14366.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14366.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14615" + }, + { + "sha": "46a1e0753d0b594d53efc6025a50eb92d6a7e6c0", + "filename": "random/1440.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1440.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1440.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1440.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9689" + }, + { + "sha": "c8498e3241fe26197226caf8f4f4c4b9bbb71851", + "filename": "random/14448.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14448.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14448.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14448.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26506" + }, + { + "sha": "26ce5fe233906f2c7b96206b925cabce702341f4", + "filename": "random/14504.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14504.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14504.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14504.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6228" + }, + { + "sha": "e05d7e09ca23acb331bc71c9177910ffe3aed3ce", + "filename": "random/14521.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14521.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14521.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14521.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24652" + }, + { + "sha": "5b6bd6d05af0b858abfe5c0b884ef9d0a0c35159", + "filename": "random/14680.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14680.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14680.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14680.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7267" + }, + { + "sha": "cf3f777f2521eceebedab2afa1df36e15d9b0536", + "filename": "random/14703.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14703.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14703.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14703.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9170" + }, + { + "sha": "8d957a49943c2018de079e30fb076695f38e9e8b", + "filename": "random/14704.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14704.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14704.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14704.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23617" + }, + { + "sha": "1e13fe97b9a706d32ecdfc6fb1208e0a5fc34548", + "filename": "random/14723.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14723.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14723.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14723.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22905" + }, + { + "sha": "b9b885ab071b23269001bdebc2b250015c7f25e9", + "filename": "random/14741.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14741.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14741.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14741.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6031" + }, + { + "sha": "f57caa331062585edb9cf1b4fb813a7b4c6ab4f0", + "filename": "random/14778.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14778.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14778.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14778.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20749" + }, + { + "sha": "eefbcda642d34ea7fdd8809785882b648e6cda67", + "filename": "random/14804.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14804.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14804.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14804.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26089" + }, + { + "sha": "8c0653ad445aee37e8db421d3d48139e382beb54", + "filename": "random/14834.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14834.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14834.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14834.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32080" + }, + { + "sha": "db638bdbcbe80d9c598e9f5f863bac217afde0c0", + "filename": "random/14839.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14839.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14839.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14839.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8302" + }, + { + "sha": "aa87d5acfbd3b859590b1f75465cb058f334502f", + "filename": "random/14930.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14930.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14930.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14930.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12098" + }, + { + "sha": "556927fab9e930ecb5df5869d37f6447b4ec106f", + "filename": "random/14931.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14931.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F14931.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F14931.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12225" + }, + { + "sha": "803389ff9f51be0a2acfa5cfba1cad825050c4d4", + "filename": "random/1501.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1501.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1501.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1501.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28472" + }, + { + "sha": "ad71acb8a1ceae9098a200b342aae33a7b4eeac5", + "filename": "random/15012.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15012.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15012.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15012.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16654" + }, + { + "sha": "126b9d2a54a0fb15fb395774408bd8fc9f392563", + "filename": "random/15045.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15045.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15045.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15045.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13708" + }, + { + "sha": "bce7cf71880861fa00bf7a45e84141a764a0711a", + "filename": "random/15056.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15056.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15056.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15056.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16424" + }, + { + "sha": "f2f440eb13f87587ce3ca23fbbbb69c78ca450f1", + "filename": "random/15072.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15072.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15072.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15072.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9602" + }, + { + "sha": "048efdb52e2be816f8d83a4ca962ead0b853ccf8", + "filename": "random/15111.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15111.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15111.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15111.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+919" + }, + { + "sha": "105b190b990122f3c5ee1ea89dea833f364b2a09", + "filename": "random/15167.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15167.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15167.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15167.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32394" + }, + { + "sha": "3ca932e6958d1126c324244bc348a16a10687817", + "filename": "random/15181.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15181.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15181.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15181.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8840" + }, + { + "sha": "2603e5a5c0a181a990ee5030104457142c0073c5", + "filename": "random/15205.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15205.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15205.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15205.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15586" + }, + { + "sha": "d3ea9f5793238e330f94db2f191515684aa1bf59", + "filename": "random/15209.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15209.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15209.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15209.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23970" + }, + { + "sha": "608a55039e440cd3bcbee71c9e02a574f265522e", + "filename": "random/15329.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15329.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15329.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15329.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28374" + }, + { + "sha": "f5bb9c530258507476537a3198a7b908820dfa4e", + "filename": "random/15345.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15345.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15345.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15345.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19536" + }, + { + "sha": "459d38138452b55d7c2e3413e5e5634cf631cf28", + "filename": "random/15349.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15349.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15349.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15349.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32601" + }, + { + "sha": "8392dfc53668d19e774b85a11c47d5d7cbbc9343", + "filename": "random/15410.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15410.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15410.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15410.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15939" + }, + { + "sha": "cba04597815c4b218efcc398da12cef381e57184", + "filename": "random/15478.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15478.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15478.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15478.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29327" + }, + { + "sha": "fae180cf24a8ba6697114984b86ed8952a187043", + "filename": "random/15487.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15487.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15487.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15487.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29247" + }, + { + "sha": "df13e00702ad75a7790aa8dc82bb37fad0f2436c", + "filename": "random/1549.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1549.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1549.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1549.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31608" + }, + { + "sha": "8f32f885403ebfb42e2c61a2574fed20b3b3a7a8", + "filename": "random/15543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13792" + }, + { + "sha": "a9ae4798040f3beaf382f0e2a47e3405fba90e85", + "filename": "random/15544.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15544.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15544.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15544.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2258" + }, + { + "sha": "1f1d3a8a62db3375caf52663947b3121d45b2d94", + "filename": "random/15552.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15552.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15552.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15552.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10766" + }, + { + "sha": "2ebd3a0c97f42f839cf6479f837ccab04466932c", + "filename": "random/1557.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1557.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1557.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1557.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+945" + }, + { + "sha": "848b9f4e4c824bb8bc5131c8aa23f6ef4a3e6720", + "filename": "random/15575.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15575.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15575.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15575.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8710" + }, + { + "sha": "da989926c1a93478778f30e211b62ff56e6bd349", + "filename": "random/1559.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1559.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1559.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1559.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15755" + }, + { + "sha": "8ebbef08979b67a19391f05d81bc1498d399151e", + "filename": "random/15630.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15630.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15630.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15630.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12166" + }, + { + "sha": "81dfdfd15f461d5304a6a16cc2255bf18ae5705b", + "filename": "random/15666.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15666.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15666.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15666.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31000" + }, + { + "sha": "76e8ecbc6ac1ef0565ad48b3a34c6e3e3cbafd67", + "filename": "random/15668.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15668.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15668.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15668.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13338" + }, + { + "sha": "6d5177e445af0445aa76c3e54405b9ff9af6a39c", + "filename": "random/15675.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15675.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15675.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15675.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1082" + }, + { + "sha": "b76f96d7b79c0a523e9a444a0a9ace975a778f07", + "filename": "random/15721.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15721.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15721.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15721.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4906" + }, + { + "sha": "9cdbe12d23720d00e11967f1bb4fd52353b7e35b", + "filename": "random/15724.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15724.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15724.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15724.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16803" + }, + { + "sha": "579f90d67174930f922b51f3b8924d7fac3541ae", + "filename": "random/15735.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15735.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15735.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15735.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31376" + }, + { + "sha": "7743c61bc26d28b2bff2974611987127f55e7277", + "filename": "random/15771.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15771.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15771.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15771.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6910" + }, + { + "sha": "df3e459afacedd61f7b198a017177ca972278180", + "filename": "random/15814.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15814.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15814.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15814.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28885" + }, + { + "sha": "3a83c78b94577dec9df12295983aa9e656ff6506", + "filename": "random/15828.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15828.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15828.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15828.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13167" + }, + { + "sha": "a80b6f961e6c0ea08e62fe1ceb3861ff1b8e0b1b", + "filename": "random/15857.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15857.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15857.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15857.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4420" + }, + { + "sha": "069e415a5e16959b0c0302833a93e3d8a1572b8e", + "filename": "random/15876.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15876.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15876.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15876.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22441" + }, + { + "sha": "bf6950a47c65da23bed8e8fd06e9744df37cbb0f", + "filename": "random/15899.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15899.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15899.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15899.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3387" + }, + { + "sha": "aed450155b53e8b4d19bfd76d2cb7aac07161816", + "filename": "random/15900.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15900.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15900.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15900.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13763" + }, + { + "sha": "a41893f99f90e718f2ac8bb7c179267f8678687b", + "filename": "random/15929.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15929.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15929.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15929.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20462" + }, + { + "sha": "757fa317e58fcd99c0eb5fc09944283aae2bdf63", + "filename": "random/15982.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15982.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15982.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15982.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17078" + }, + { + "sha": "edfdf9504569fc6b6ff4bdc13cacfaad86af72d9", + "filename": "random/15988.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15988.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F15988.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F15988.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11708" + }, + { + "sha": "14b82c0eb857f12c38674dc4e3bed397484a74cc", + "filename": "random/1602.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1602.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1602.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1602.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30806" + }, + { + "sha": "48e0848b00c8402fff7884c067f4feb49d8d417e", + "filename": "random/16066.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16066.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16066.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16066.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19390" + }, + { + "sha": "c9b1b7c81ca42077959798ece254c8356ea05d5e", + "filename": "random/16141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3061" + }, + { + "sha": "eb34a7c79c0163b5eb54ded5724bf2eb5d0e74c8", + "filename": "random/16147.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16147.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16147.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16147.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29863" + }, + { + "sha": "e397113de20e34659b8e4a371ec1cb6a01975119", + "filename": "random/16299.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16299.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16299.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16299.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31854" + }, + { + "sha": "15f22840aaa1958326336e9b022c9f39f2d76318", + "filename": "random/16345.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16345.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16345.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16345.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14278" + }, + { + "sha": "91d29eedca13a8de64452768e8fcea1a6c7fcf5a", + "filename": "random/16367.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6222" + }, + { + "sha": "4946b5fbc1da2a12ca2aad3ad3bb0e4e9ea6c102", + "filename": "random/16634.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16634.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16634.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16634.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30392" + }, + { + "sha": "32950588a3a8fcebe54c86da9f603a2ce2212689", + "filename": "random/16756.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16756.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16756.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16756.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17142" + }, + { + "sha": "fa365d023484526dfb2cac67bd88cdb00cb875d1", + "filename": "random/16787.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16787.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16787.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16787.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15528" + }, + { + "sha": "ed0aba6d721ed4e46615c55c84f6b60205b39b71", + "filename": "random/168.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F168.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F168.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F168.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3749" + }, + { + "sha": "a35854776a38a4a88aaf1e47be08403582d0e858", + "filename": "random/1689.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1689.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1689.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1689.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4201" + }, + { + "sha": "9a3b6c5527bb66f096b783052c038a490277dc76", + "filename": "random/16913.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16913.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16913.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16913.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16269" + }, + { + "sha": "67cd4cb15b58c072f5c1590357f898e3490a65fd", + "filename": "random/16940.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16940.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16940.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16940.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28296" + }, + { + "sha": "a50b24c46a189542fb34897e4a7efb185982b41b", + "filename": "random/16948.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16948.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F16948.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F16948.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27210" + }, + { + "sha": "3a695d2c312b8750f7ce5fa854c08d8ede7f82b9", + "filename": "random/17043.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17043.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17043.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17043.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18481" + }, + { + "sha": "66cfe99515a7c202221157773e4be98d9dc411b9", + "filename": "random/1709.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1709.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1709.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1709.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7525" + }, + { + "sha": "56c905831364abce8f5e88ecaf33d5da3519b628", + "filename": "random/17205.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17205.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17205.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17205.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14309" + }, + { + "sha": "400354d6f22d25beab771ed6a460b3b8084045ce", + "filename": "random/1729.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1729.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1729.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1729.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29605" + }, + { + "sha": "776bb6d134bd2e733fb18d41f16d0c36a52284b9", + "filename": "random/17305.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17305.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17305.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17305.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21381" + }, + { + "sha": "a5c3fde3c17743db5d582d70778c79931da584ec", + "filename": "random/17352.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17352.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17352.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17352.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+373" + }, + { + "sha": "596134a7ce04956e7d8d141d159f12e822875e4b", + "filename": "random/17419.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17419.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17419.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17419.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18602" + }, + { + "sha": "db0e38b0ee1350806da6f95819bdb2d3eae403b7", + "filename": "random/1742.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1742.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1742.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1742.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2045" + }, + { + "sha": "b1e142d995fa14627074fc15981b8f3225c0f2d4", + "filename": "random/17426.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17426.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17426.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17426.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1584" + }, + { + "sha": "aeaee565f96102a6a20b9a354dec483498a8bf17", + "filename": "random/1748.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1748.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1748.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1748.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2985" + }, + { + "sha": "18821c947f53562d7a44727501de16849fafcb1c", + "filename": "random/17483.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17483.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17483.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17483.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15707" + }, + { + "sha": "8fdd8b5e78e72125df77d4df0b16524e4313740a", + "filename": "random/17546.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17546.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17546.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17546.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31710" + }, + { + "sha": "ffba30626f6e6f535b279009a701c74704deaf35", + "filename": "random/17580.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17580.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17580.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17580.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31182" + }, + { + "sha": "7c3005f03680f0a302f4cc669482218b8f7345d4", + "filename": "random/17704.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17704.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17704.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17704.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32170" + }, + { + "sha": "7f8678a7c58fe0ea1b64c2f10bc74d37671f69fd", + "filename": "random/17824.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17824.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17824.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17824.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13096" + }, + { + "sha": "99f88f8be65412a6f5a9cc6944cb6cb14ad6c0a2", + "filename": "random/17829.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17829.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F17829.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F17829.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10932" + }, + { + "sha": "627b39e1378568b66d1c0c2f2f934937bbbf2bda", + "filename": "random/18049.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18049.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18049.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18049.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3062" + }, + { + "sha": "cdaa99b540e82d22b47798125e7736f5998d595a", + "filename": "random/18137.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18137.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18137.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18137.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12742" + }, + { + "sha": "2eb76e72e6c68fdcd61190488f3cd3942f098bfb", + "filename": "random/18141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12605" + }, + { + "sha": "557cea072dcbe7e72f24d31878d2e7a49769e07b", + "filename": "random/18156.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25409" + }, + { + "sha": "ee97dd04ced3a38169235397aa38bca34117ee5d", + "filename": "random/18158.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18158.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18158.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18158.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30885" + }, + { + "sha": "f4cac6ae1ed2180745fa82eb80caed34e2d753bf", + "filename": "random/18167.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18167.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18167.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18167.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9610" + }, + { + "sha": "1b800d417465778f0c38d3311983689b335ad441", + "filename": "random/18175.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18175.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18175.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18175.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7567" + }, + { + "sha": "e961d1fe2782e4e6072b172fa260c4791253ec87", + "filename": "random/18217.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18217.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18217.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18217.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17805" + }, + { + "sha": "1e5f294b61d35e398591e27a65d2c21c51dfee59", + "filename": "random/18240.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18240.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18240.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18240.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6503" + }, + { + "sha": "a8a58af06d23444bc7eaf40f155185e465142874", + "filename": "random/18322.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18322.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18322.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18322.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14810" + }, + { + "sha": "5cc796bc33729168fd2f77494aa6f9c932a44e56", + "filename": "random/18335.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18335.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18335.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18335.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6668" + }, + { + "sha": "5e19d047f41d753c73f3fb53144c566fa6982afc", + "filename": "random/18415.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18415.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18415.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18415.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26337" + }, + { + "sha": "35843b2696556ef7c393f19cac8b807af164b54c", + "filename": "random/18424.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18424.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18424.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18424.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17002" + }, + { + "sha": "6bd823fbeb53459108b7e42c171e7b2c85772007", + "filename": "random/18425.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18425.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18425.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18425.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18351" + }, + { + "sha": "500569dc4ee8b30c711848c813603ee05d92041c", + "filename": "random/18478.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18478.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18478.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18478.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12436" + }, + { + "sha": "adc7a5a8ef7c120c934704849e15379df77e1e87", + "filename": "random/18510.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18510.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18510.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18510.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23806" + }, + { + "sha": "fc4c10bd6a21de414ad4e7db16ba683b8f85ec71", + "filename": "random/18535.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18535.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18535.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18535.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7097" + }, + { + "sha": "179dae4a826ba8c007c506d014d16f5340caeaca", + "filename": "random/1861.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1861.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1861.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1861.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23370" + }, + { + "sha": "75132fa7768afcc6b9dde9332c6996b2277c783b", + "filename": "random/18626.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18626.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18626.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18626.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26908" + }, + { + "sha": "3d5ab518e1fb1845f5b68271b891a84a7d15747a", + "filename": "random/18629.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18629.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18629.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18629.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30023" + }, + { + "sha": "750c44b31236a0b81684014d04af055853e85c4c", + "filename": "random/1864.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1864.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1864.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1864.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30652" + }, + { + "sha": "049de3d31353c49bbe6c56ba699ed454c2812f5e", + "filename": "random/18670.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18670.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18670.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18670.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32250" + }, + { + "sha": "47499bca2639b021584787b49014d0827913f29d", + "filename": "random/1873.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1873.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1873.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1873.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13795" + }, + { + "sha": "08594e77eba0c79ea0b7955e96c09024ec66177f", + "filename": "random/1877.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1877.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F1877.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F1877.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20793" + }, + { + "sha": "0262e5efb41367f424300e98bad24571635f8501", + "filename": "random/18852.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1506" + }, + { + "sha": "b26d474ac80a3833329b9e586efa54e22d3c6fe1", + "filename": "random/18862.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18862.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18862.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18862.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5569" + }, + { + "sha": "f1281c35108ae4e8a9d8822e27bbd67045dfc4aa", + "filename": "random/18953.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18953.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F18953.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F18953.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21712" + }, + { + "sha": "4b92bb132c0abf33453d4b65a834743be0ca527f", + "filename": "random/19013.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19013.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19013.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19013.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13110" + }, + { + "sha": "9c95d8d2edb2ec746fa4b34d2d81887a76bf34f1", + "filename": "random/191.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F191.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F191.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F191.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9274" + }, + { + "sha": "92048a505a35e670a30c72fb6448b65d08646e8f", + "filename": "random/19131.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19131.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19131.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19131.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5629" + }, + { + "sha": "8d3be532de35b925ba2efc2cd97dbb5d85db5f1a", + "filename": "random/19175.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19175.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19175.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19175.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25814" + }, + { + "sha": "d1b8e2f29a872729b992e55caf5309c0f04d7035", + "filename": "random/19189.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19189.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19189.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19189.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1660" + }, + { + "sha": "0be1ce65f9d10f22ad32ca22b541cc94ca1474ca", + "filename": "random/19234.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19234.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19234.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19234.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23141" + }, + { + "sha": "442711b3ea4c7f7b15f3547d49a1f554fd7906fc", + "filename": "random/19258.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19258.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19258.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19258.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32503" + }, + { + "sha": "73f10fb8f3afb92d7fbeafb417f5e556daa2d429", + "filename": "random/19309.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19309.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19309.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19309.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26746" + }, + { + "sha": "59ec8b5d38d2ba2352f27db66b46f57dfd18bcc2", + "filename": "random/19368.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19368.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19368.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19368.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21954" + }, + { + "sha": "340b3519a5d90e562d088561582bcf18c32734d0", + "filename": "random/19385.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19385.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19385.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19385.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1576" + }, + { + "sha": "bba5da15f401cf8d0a0dd16152dd4a7484127528", + "filename": "random/19469.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19469.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19469.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19469.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1958" + }, + { + "sha": "d80e90bb407d3b7a182f7d771d46bb67e0408609", + "filename": "random/19490.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19490.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19490.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19490.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30597" + }, + { + "sha": "b4e485a6bbe1596ca126b755393d52e6da1bd0b9", + "filename": "random/19532.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19532.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19532.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19532.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17318" + }, + { + "sha": "2bdc6533bec75e2127a1315799e96da11004bc01", + "filename": "random/19536.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19536.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19536.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19536.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7000" + }, + { + "sha": "e8be186012394c5a1028872dcfbb625acc9dce06", + "filename": "random/19673.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19673.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19673.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19673.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5493" + }, + { + "sha": "4bc6ac2684e29c5cb34697fbae29e006d052c672", + "filename": "random/19677.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19677.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19677.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19677.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25023" + }, + { + "sha": "3fd30e580586056557c6ecabebdc4b66402e6bb8", + "filename": "random/19678.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19678.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19678.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19678.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30663" + }, + { + "sha": "1f9839b26725c0e95f19091ef7b0cf851a7938d2", + "filename": "random/19739.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19739.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19739.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19739.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21215" + }, + { + "sha": "9c63f04035a9de6a3e9ea3314446006ed5dfbfc3", + "filename": "random/19757.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19757.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19757.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19757.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15202" + }, + { + "sha": "5fdb783e5262ec199d6b91b0c0113d28a6605c87", + "filename": "random/19912.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19912.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19912.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19912.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28881" + }, + { + "sha": "fd6169b6e3364b2dd0a033d24965c9dbab9c6f9a", + "filename": "random/19922.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18023" + }, + { + "sha": "02b9e1eb18cd39a78af33d7559d7ed2ba8934b8c", + "filename": "random/19952.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19952.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F19952.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F19952.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10334" + }, + { + "sha": "c45c303affc42adad9d559b17e17537c9f778f57", + "filename": "random/20007.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20007.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20007.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20007.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27298" + }, + { + "sha": "b630da6c8469ff5852c37f9f1e1f1d27bf209a0c", + "filename": "random/20050.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20050.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20050.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20050.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13806" + }, + { + "sha": "cef7c446ac227cf550615950929a840f9a4d2320", + "filename": "random/20058.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20058.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20058.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20058.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16588" + }, + { + "sha": "07e62978eb8f8989b5f4d4d3241d9590bee7aadd", + "filename": "random/20073.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20073.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20073.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20073.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27692" + }, + { + "sha": "3a5c1c66c27aacfff46ea16d7b28fc6c908dd531", + "filename": "random/20173.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20173.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20173.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20173.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6577" + }, + { + "sha": "b57252391c66ad28b2c83dd6f4ef9180cfc78eef", + "filename": "random/20240.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20240.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20240.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20240.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8357" + }, + { + "sha": "570a868e942df851e969b611ad4d6d3ae58420f8", + "filename": "random/20383.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5421" + }, + { + "sha": "fb5ec0567573771fa07af43032663a1fd581b9f9", + "filename": "random/20416.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20416.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20416.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20416.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25707" + }, + { + "sha": "20de14b506ee8d309eb7233a9e23e87baee6ed49", + "filename": "random/20543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4337" + }, + { + "sha": "a70b62183792e449b4a909cf7e4846716c08542e", + "filename": "random/2059.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2059.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2059.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2059.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23031" + }, + { + "sha": "f339067f32b5c98e86d3225a4cc8b007a885514a", + "filename": "random/20682.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20682.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20682.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20682.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18107" + }, + { + "sha": "e83eb2865aca6532dec029d3de81ebb18a1b7996", + "filename": "random/20811.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20811.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20811.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20811.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14224" + }, + { + "sha": "33d6168ad20bb6e5e2366a986529ad83f308c7c9", + "filename": "random/20904.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20904.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20904.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20904.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6856" + }, + { + "sha": "193548119a9173b05da0aef418af8f3a58d02068", + "filename": "random/20922.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18291" + }, + { + "sha": "79bf159caab0e7a18945513e8daeee57e7d5756f", + "filename": "random/20949.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20949.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20949.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20949.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14734" + }, + { + "sha": "682f073dce810db438b1a35398f25967a72028c9", + "filename": "random/20976.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20976.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F20976.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F20976.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23081" + }, + { + "sha": "43f26745913d68bacc27482c4b1af4efe4142a49", + "filename": "random/21000.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21000.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21000.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21000.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22794" + }, + { + "sha": "e4bace5a356dd825b4d7dd7bd262e982c515cc2f", + "filename": "random/21014.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21014.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21014.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21014.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9519" + }, + { + "sha": "991b11f5d755030ec20f33c447af96854083d8e6", + "filename": "random/2110.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2110.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2110.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2110.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25885" + }, + { + "sha": "06cd33b3a2a647062ea186abdec79610b5af9410", + "filename": "random/21111.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21111.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21111.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21111.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15928" + }, + { + "sha": "a20e18243e7cbb44a3f86420b100966807a6fb52", + "filename": "random/21128.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21128.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21128.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21128.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20486" + }, + { + "sha": "6ff058e4ba7b7a6691056f727e3007893b4c5033", + "filename": "random/21164.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21164.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21164.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21164.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22671" + }, + { + "sha": "6ba0028cf1f009c82fbd6eaf54e98b67fd5186e5", + "filename": "random/21304.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21304.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21304.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21304.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17324" + }, + { + "sha": "ec42e6d49a9f887b4263755068bb31dfe6ad2a7e", + "filename": "random/21357.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21357.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21357.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21357.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2142" + }, + { + "sha": "38c11d1503cbd6973e748cc45878e6f4106597fa", + "filename": "random/21360.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21360.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21360.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21360.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19846" + }, + { + "sha": "3e481871272d4e22a7b824c87025ca522e71b4be", + "filename": "random/21459.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21459.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21459.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21459.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30737" + }, + { + "sha": "33949a58ac9fa6e69522c657016dcbfee8605464", + "filename": "random/21707.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21707.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21707.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21707.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15267" + }, + { + "sha": "a37e2a8309c39263a54e692492f3702d76325d15", + "filename": "random/21712.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21712.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21712.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21712.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5980" + }, + { + "sha": "50e370fcddd8f589d6fc6c22d78674028e7461cc", + "filename": "random/21724.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21724.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21724.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21724.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32242" + }, + { + "sha": "d3c134636374c2fd26a47d3a6f2ecdf07343cd66", + "filename": "random/21835.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21835.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21835.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21835.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21517" + }, + { + "sha": "e98bb82afe3002e14f6ae3d044d9828c40b9cdde", + "filename": "random/21847.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21847.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21847.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21847.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17232" + }, + { + "sha": "caf313abb1c80f6b2e59c44d2f0e9981ef6ff374", + "filename": "random/21875.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21875.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21875.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21875.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23561" + }, + { + "sha": "f3e93d79f9817ea060d72204b7bf8167eadb23ad", + "filename": "random/21881.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21881.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21881.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21881.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13925" + }, + { + "sha": "217ec973caa3d4aa7c7c278d405f20650c2ff51d", + "filename": "random/21884.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21884.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21884.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21884.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5649" + }, + { + "sha": "c5162e2c5c4e7d4d60550ba33dc952af16add899", + "filename": "random/21987.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21987.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F21987.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F21987.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19429" + }, + { + "sha": "df616618d257ef10208f6b22c4a769e1df7b113a", + "filename": "random/22014.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22014.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22014.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22014.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23268" + }, + { + "sha": "55c23b97e1a7a589660f86a22b081a883f89055f", + "filename": "random/22046.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22046.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22046.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22046.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25251" + }, + { + "sha": "0fc1b9e382e36a6b04ce846c90a133ad6b8bdfbd", + "filename": "random/22126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20396" + }, + { + "sha": "531f73c0c781df7282829f153be9072d0009f3ad", + "filename": "random/22154.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22154.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22154.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22154.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13161" + }, + { + "sha": "263896ceab90da18101055fb8273ddccb3f0f8ed", + "filename": "random/22168.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22168.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22168.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22168.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21523" + }, + { + "sha": "0b869f9e5a9949ea191494f283a2c8bce41ed43a", + "filename": "random/22200.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22200.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22200.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22200.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18191" + }, + { + "sha": "cf8e983961502b43f5205d49560d4d451852e944", + "filename": "random/22215.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22215.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22215.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22215.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26450" + }, + { + "sha": "aa0787943184ec8d17333e04f16a189893f84ea3", + "filename": "random/22233.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22233.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22233.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22233.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8297" + }, + { + "sha": "112df5f7d17813c08048c0d709c1ff5f4be37010", + "filename": "random/22255.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22255.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22255.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22255.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26622" + }, + { + "sha": "9adbd23923bacef95f462638443fe16f45bf2f4b", + "filename": "random/22264.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22264.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22264.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22264.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2042" + }, + { + "sha": "fbaf601af1b23a27736ad529def8ac5bd174add9", + "filename": "random/22332.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22332.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22332.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22332.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26150" + }, + { + "sha": "86761e45f7a9131560207db0f64c51901924b999", + "filename": "random/22364.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22364.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22364.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22364.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9671" + }, + { + "sha": "966e333dd72d7a267604b48bc868e8e92be69149", + "filename": "random/22416.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22416.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22416.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22416.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23309" + }, + { + "sha": "ee944c2d8f3450a4673ad71e82dd462828499131", + "filename": "random/22464.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22464.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22464.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22464.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10354" + }, + { + "sha": "8f901d83747ee20a19cbe4f199b083e5a3678c61", + "filename": "random/22516.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22516.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22516.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22516.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25397" + }, + { + "sha": "29235ffb78a1170c734cacea68d0a126028adc1d", + "filename": "random/22526.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22526.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22526.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22526.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4306" + }, + { + "sha": "e06108c0fa14137d39a66c5a45d58dbde7904cc6", + "filename": "random/22587.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22587.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22587.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22587.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+247" + }, + { + "sha": "731db4d71751d70fb93863e782c9b25a6f5af00e", + "filename": "random/22592.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22592.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22592.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22592.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22161" + }, + { + "sha": "d837ea78a0a321485e60d977bd887a157d0ab6f3", + "filename": "random/22613.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22613.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22613.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22613.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5608" + }, + { + "sha": "8df6f8a0aa30cb4c198e9f23d6ab2d76128867a8", + "filename": "random/22649.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22649.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22649.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22649.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19069" + }, + { + "sha": "2a1922f8e90baacf7ef0e8b64172916b32c72daa", + "filename": "random/22659.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22659.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22659.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22659.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24276" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json new file mode 100644 index 0000000000..f148896940 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json @@ -0,0 +1,3686 @@ +{ + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "node_id": "C_kwDOJzFPltoAKGI4MzgxMmFhNzZiYjdjM2M0M2RhOTZmYmY4YWVjMWU0NWRiODc2MjQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "message": "A commit with lots of files", + "tree": { + "sha": "6718afb2869b086c47122e4187b14585fed52644", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/6718afb2869b086c47122e4187b14585fed52644" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96" + } + ], + "stats": { + "total": 691, + "additions": 691, + "deletions": 0 + }, + "files": [ + { + "sha": "19d8c7c338f6ace51c04d403f23794c80a59264c", + "filename": "random/22707.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22707.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22707.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22707.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23685" + }, + { + "sha": "e1bcb22e0e07e6aa562e6438f673c1f7513b4d4e", + "filename": "random/2271.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2271.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2271.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2271.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2333" + }, + { + "sha": "22f0024e5c89ccd25562c9592a5e66a06ccbb645", + "filename": "random/22715.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22715.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22715.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22715.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14894" + }, + { + "sha": "9340e766f333c9ca6e7f9cacd86da59e0c79876a", + "filename": "random/22720.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22720.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22720.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22720.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6448" + }, + { + "sha": "f8d485e7d21aa42e9d69d7710dbc422d62301ad8", + "filename": "random/2279.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2279.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2279.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2279.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26556" + }, + { + "sha": "2f0a28ce196207bd325eb9f78e998fad62ebbb91", + "filename": "random/22807.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22807.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22807.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22807.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24099" + }, + { + "sha": "596c536ff79f0bb54b0d43186ba9dc3163149068", + "filename": "random/22817.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22817.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22817.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22817.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11999" + }, + { + "sha": "63de6e495a333225894a2c10d1f5da9f2b0bc388", + "filename": "random/22839.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22839.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22839.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22839.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26382" + }, + { + "sha": "2e4a9389fbafb68814d99370c6a3324fe769ca27", + "filename": "random/22863.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22863.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22863.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22863.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16368" + }, + { + "sha": "af13b1c489344b7104b00b68d3665b5894231eca", + "filename": "random/22971.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22971.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F22971.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F22971.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1588" + }, + { + "sha": "6cb37e00ef9432181f8a0bb665de35092d5d0370", + "filename": "random/23108.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23108.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23108.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23108.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15470" + }, + { + "sha": "0620b91a6487a14cbc50df00b1cd284a4a7549e1", + "filename": "random/23130.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23130.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23130.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23130.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19595" + }, + { + "sha": "2e74587a1b458f9582dffd34a67681c444199d03", + "filename": "random/23141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27008" + }, + { + "sha": "55f69fcdef99260ac2320175d52618b5388686de", + "filename": "random/23142.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23142.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23142.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23142.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17879" + }, + { + "sha": "138ae7ea386170f82c1808085ca97f0fe676aa02", + "filename": "random/23171.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23171.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23171.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23171.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27296" + }, + { + "sha": "7e30bed39582f82d54c24bec0b872e13ad701ed4", + "filename": "random/2320.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2320.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2320.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2320.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5431" + }, + { + "sha": "6b207bad6c8945f76ebfe74624a1b98e547924a8", + "filename": "random/23285.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23285.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23285.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23285.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3191" + }, + { + "sha": "57b05dbf7cd0939c222442136a4b52d4ba49fcd3", + "filename": "random/233.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F233.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F233.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F233.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13431" + }, + { + "sha": "85d022d5928070ad527212dfa64245ff17f1c173", + "filename": "random/23350.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23350.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23350.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23350.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21102" + }, + { + "sha": "5ed7d7f4a449a44b13655d7d8ed90b2e60cde0cf", + "filename": "random/23358.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23358.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23358.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23358.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18940" + }, + { + "sha": "1c2ba3a97fdb7b53ed9815c8acac2935a3fa5607", + "filename": "random/23383.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4744" + }, + { + "sha": "26551cf1336c5a4efc39e02dfcf8c559c48bbfe2", + "filename": "random/23384.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23384.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23384.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23384.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+463" + }, + { + "sha": "cd4a47354e0caa61b76731ba34f6de5bc9ab50cb", + "filename": "random/23393.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23393.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23393.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23393.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30921" + }, + { + "sha": "9142bb40c2a9f5182d87b054b3e3281cc393d505", + "filename": "random/2350.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2350.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2350.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2350.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2008" + }, + { + "sha": "829df7665b845aa04b7017def5874b759cd4b5c2", + "filename": "random/23551.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23551.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23551.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23551.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18376" + }, + { + "sha": "c40f8f054ef0875fbe24accac7b9c87c1cc1c9c6", + "filename": "random/23560.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23560.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23560.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23560.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23317" + }, + { + "sha": "a818abc4a57dd5a9c9fbbc8afcaa8ba51355776c", + "filename": "random/23579.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23579.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23579.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23579.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+736" + }, + { + "sha": "1bc0fa398e769a54edc3b1f3a0a08bb17885c4fe", + "filename": "random/23581.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23581.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23581.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23581.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21346" + }, + { + "sha": "28e7ef57d7c26d3ed0fb10e594712506bc58c2b5", + "filename": "random/23589.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23589.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23589.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23589.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32625" + }, + { + "sha": "7be817d2f8911f2d77daf8adbefd074dfe8c12bb", + "filename": "random/23597.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23597.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23597.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23597.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17369" + }, + { + "sha": "498e27e8384e77da6e1cf53ee468a82d3b4ef761", + "filename": "random/2361.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2361.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2361.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2361.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28827" + }, + { + "sha": "622e927fb496cd6cee078e4c2d99c3dc9485142c", + "filename": "random/23703.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23703.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23703.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23703.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7538" + }, + { + "sha": "cdc17066eb9a0891570cb951410b85a8fb2a3882", + "filename": "random/23705.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23705.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23705.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23705.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12765" + }, + { + "sha": "356ded05dcd8242418bbe3dc4929c2f97ff0a12b", + "filename": "random/23734.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23734.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23734.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23734.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18258" + }, + { + "sha": "d322586238a1d721f523a96104db694882881b4a", + "filename": "random/23758.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23758.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23758.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23758.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20157" + }, + { + "sha": "ed2d82a151d26d37c0439d008e1a2a9db132873b", + "filename": "random/2378.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2378.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2378.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2378.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28681" + }, + { + "sha": "2ebcee9cf00845e9f71d46d8c36c2c80ecf30de9", + "filename": "random/23781.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23781.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23781.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23781.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31260" + }, + { + "sha": "bd076fea52cfe35474404f471c8331514c8f5df8", + "filename": "random/23809.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23809.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23809.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23809.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7041" + }, + { + "sha": "b9162d852b46c43ce0f144b2ae5a353d0079b7a5", + "filename": "random/23852.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15910" + }, + { + "sha": "4cd62f6ebf1b596ebb1ec643312bdb08927c5290", + "filename": "random/23883.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23883.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23883.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23883.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14711" + }, + { + "sha": "45c40028f4a76dea0d1624856845036aa739b050", + "filename": "random/23926.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23926.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F23926.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F23926.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16033" + }, + { + "sha": "29369e2fca5b9655f54d825ef0ecee1a6fa26dc5", + "filename": "random/24018.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24018.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24018.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24018.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22972" + }, + { + "sha": "4e605f38b5b824bc597362f70c6b9ad846fdbec6", + "filename": "random/24127.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24127.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24127.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24127.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8687" + }, + { + "sha": "0ae9d1ef4c0100a8c52c4f6aa982dad9042e0163", + "filename": "random/24132.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24132.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24132.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24132.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+334" + }, + { + "sha": "39a358f9dc792ff0d88e150bb2d56ab0d4dbba21", + "filename": "random/24180.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24180.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24180.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24180.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24984" + }, + { + "sha": "02f5edf53cf73d0674a2d398dbea0ed984421bdf", + "filename": "random/24215.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24215.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24215.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24215.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27518" + }, + { + "sha": "c343caa8e265926693ef1727f41766c0f7466502", + "filename": "random/24351.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24351.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24351.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24351.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12223" + }, + { + "sha": "e66b68a27471b755f10abb8916a5c846a9ace1a4", + "filename": "random/24386.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24386.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24386.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24386.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13740" + }, + { + "sha": "9292fcae65737c1f3ffb935049d23c7478a0a716", + "filename": "random/24410.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24410.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24410.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24410.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6606" + }, + { + "sha": "f57d3540e6b9286644e8f03cec3446071262de76", + "filename": "random/24416.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24416.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24416.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24416.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30437" + }, + { + "sha": "470493751a13f75ea9a8a9da070e7e58aea749f3", + "filename": "random/24418.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24418.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24418.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24418.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8720" + }, + { + "sha": "00adea1cb89627387663b7e53c929d7dcb5a9640", + "filename": "random/24538.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24538.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24538.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24538.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27694" + }, + { + "sha": "fd639d9b10013e87df0976e4b3e7c7596d78e3d7", + "filename": "random/24545.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24545.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24545.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24545.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7078" + }, + { + "sha": "c05309ba1466f286ce44f8731f0e627430de73ed", + "filename": "random/24625.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24625.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24625.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24625.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23982" + }, + { + "sha": "7e1f9f8ebfeb64d1c4087118cb896f45f34a54f7", + "filename": "random/24636.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24636.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24636.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24636.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7301" + }, + { + "sha": "e0a36c89f6313ae82a44b0f207d4b894f1d5df6f", + "filename": "random/24791.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24791.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24791.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24791.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5232" + }, + { + "sha": "e382e8c514fbfbf5e4976b1b1fc9b1cab0490913", + "filename": "random/2486.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2486.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2486.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2486.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20736" + }, + { + "sha": "10a4cc301483f7ead26a4cc336cef8c9fe740756", + "filename": "random/24860.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24860.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24860.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24860.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28946" + }, + { + "sha": "b2dffb77e8b99b060aa767ffd1de397492aca97b", + "filename": "random/24863.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24863.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24863.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24863.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1652" + }, + { + "sha": "194066ad76256795373bc8709e466932313d6819", + "filename": "random/24871.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24871.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24871.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24871.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12820" + }, + { + "sha": "2c527f0e2bd36f8a3c8be4a84a3ed03e18697315", + "filename": "random/24888.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24888.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24888.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24888.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8461" + }, + { + "sha": "56e4520ef2c30c565f31a7580a8542151f3910aa", + "filename": "random/24889.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24889.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F24889.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F24889.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25066" + }, + { + "sha": "68349c811626b26ffdadc7b58a8401f90e58e160", + "filename": "random/25014.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25014.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25014.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25014.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26438" + }, + { + "sha": "d474e1c338b8128abbac7e21348fc45fecda8564", + "filename": "random/2518.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2518.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2518.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2518.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6724" + }, + { + "sha": "a1ebabbab87318bbb425d72f3ead07ec8e2e17d6", + "filename": "random/25194.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25194.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25194.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25194.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32430" + }, + { + "sha": "474510dc2f9c8d88b0f9bfede0a722230f4ed8a9", + "filename": "random/25204.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25204.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25204.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25204.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25312" + }, + { + "sha": "79199da5e61485412fbf05bc937d3c14a2a61887", + "filename": "random/25237.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25237.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25237.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25237.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22028" + }, + { + "sha": "8b9c622b5827cd223b3312e0da15598b115381be", + "filename": "random/25364.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25364.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25364.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25364.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32679" + }, + { + "sha": "838b2b834bd2cda32a9e45b90bee54719840b1b9", + "filename": "random/25383.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20578" + }, + { + "sha": "09b20f4efc3454f1c93695f3d5b8f4573b28e425", + "filename": "random/25386.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25386.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25386.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25386.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21387" + }, + { + "sha": "0a9f0355100d270af7f9a9143a143ab81d9d31ba", + "filename": "random/25402.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25402.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25402.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25402.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13087" + }, + { + "sha": "9a9670beef1516979b00a55ceedfac74f73836ae", + "filename": "random/25559.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25559.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25559.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25559.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16029" + }, + { + "sha": "a19e190ee13aab334f427571809fe420b6d7ef58", + "filename": "random/25560.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25560.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25560.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25560.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19558" + }, + { + "sha": "6048c22a3f8b3b1b98581fdc213660a57d21a131", + "filename": "random/25578.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25578.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25578.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25578.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16772" + }, + { + "sha": "b8ac12590288f3c0f33c0b23df70102b74dfaaaf", + "filename": "random/25598.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25598.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25598.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25598.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6517" + }, + { + "sha": "b3c2e6e4494225f311d897ce3e0f65bfee0bf6ae", + "filename": "random/25689.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25689.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25689.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25689.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30119" + }, + { + "sha": "450b777514adcc1646e942869b119b908b299307", + "filename": "random/25762.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25762.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25762.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25762.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17273" + }, + { + "sha": "8f8c5bddca66e57c1ffefac9e2c7f426ad890e0a", + "filename": "random/25768.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25768.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25768.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25768.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22547" + }, + { + "sha": "321ba80783b701c2e88afe44083e01b2bf307376", + "filename": "random/25838.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25838.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25838.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25838.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21677" + }, + { + "sha": "d3bbff41e22d1c217607d9fbbd06db9b2d56ef3b", + "filename": "random/25904.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25904.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25904.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25904.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26269" + }, + { + "sha": "47902851cd41127833a18d098a74739a0078cb37", + "filename": "random/25986.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25986.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F25986.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F25986.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12693" + }, + { + "sha": "f2b9aa62ba8d34bade88e74c5a68ef71bf5b562b", + "filename": "random/26016.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26016.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26016.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26016.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21418" + }, + { + "sha": "0635d64698c39acfb338194ff345f050c3f1bd07", + "filename": "random/26023.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26023.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26023.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26023.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15372" + }, + { + "sha": "473ef4c61b4445af5b8bbe7da7b2eef7812a79c5", + "filename": "random/26087.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26087.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26087.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26087.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15729" + }, + { + "sha": "6cb37e00ef9432181f8a0bb665de35092d5d0370", + "filename": "random/26129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15470" + }, + { + "sha": "b1ee089f2a08b8ba4d0f7e2a9923155f4e505140", + "filename": "random/26141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5528" + }, + { + "sha": "c7a872b37eade3e60d67496f3253db0ff75ff4c1", + "filename": "random/26267.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26267.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26267.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26267.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29829" + }, + { + "sha": "b6234032c524234d798424a0332c88a3e50b6851", + "filename": "random/26367.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18145" + }, + { + "sha": "895152c23ffb49e91e2c3f8da5465170fe0bcd6b", + "filename": "random/26407.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26407.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26407.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26407.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+748" + }, + { + "sha": "5478c714f35ec8a758321acd39af9b29a58f6ede", + "filename": "random/26408.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26408.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26408.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26408.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+313" + }, + { + "sha": "72272b527bc7ab09a3839a1a5aeabcd68b18a64b", + "filename": "random/26414.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26414.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26414.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26414.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17659" + }, + { + "sha": "893d2d68f5579f3ca0a64a6b47530c6b592a65d3", + "filename": "random/26438.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26438.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26438.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26438.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19880" + }, + { + "sha": "6c23c432eb53a07f610b4110cb76e6101824f4ff", + "filename": "random/2646.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2646.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2646.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2646.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15531" + }, + { + "sha": "1d4d5339ee22f866bc28caa5d4510e3338f225f9", + "filename": "random/26480.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26480.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26480.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26480.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12214" + }, + { + "sha": "81e1ed4fd4bfecf54ed93ef73f8e41c7cc39843b", + "filename": "random/2653.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2653.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2653.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2653.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19389" + }, + { + "sha": "438d8ab0b97e03dd18252e9c79aefb1ce5560e28", + "filename": "random/26566.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26566.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26566.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26566.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18287" + }, + { + "sha": "38e1b2406271cb1a3ea31f31ad1568a653bc015a", + "filename": "random/26569.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26569.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26569.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26569.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8626" + }, + { + "sha": "ea083d7d59b53280a90b8a7b14ac002a07877ef1", + "filename": "random/26572.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26572.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26572.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26572.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28464" + }, + { + "sha": "ad9fa199a336e8851c2f8c8ba6fc02f6dfa20767", + "filename": "random/26599.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26599.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26599.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26599.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7008" + }, + { + "sha": "5f277ae787b09652b4f6a091c66203fbfb646ecd", + "filename": "random/26649.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26649.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26649.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26649.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+223" + }, + { + "sha": "6a1183329240e53c648876eb041aa9ab010c55b2", + "filename": "random/26750.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26750.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26750.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26750.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+654" + }, + { + "sha": "d00808b1ee9461307e21f6c425d366bddd8c5506", + "filename": "random/26829.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26829.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26829.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26829.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23444" + }, + { + "sha": "f83bb2a945e11c9866f66466053f96a8b62ce675", + "filename": "random/26869.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26869.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26869.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26869.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29950" + }, + { + "sha": "046c69a761be16e91d859990b8c3ea6dc40de286", + "filename": "random/26887.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26887.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26887.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26887.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14996" + }, + { + "sha": "ea45272b0261813cf8f2cd8c39e040b22b14f7d4", + "filename": "random/26900.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26900.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26900.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26900.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2637" + }, + { + "sha": "73e3e34dfe60a120ae8044d58988afd7341ebed9", + "filename": "random/26901.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26901.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26901.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26901.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23052" + }, + { + "sha": "3178db2b52c8118425f15a71769c4e42c6d29d93", + "filename": "random/26946.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26946.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26946.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26946.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31256" + }, + { + "sha": "a7aa0fca787880d6a3feb77b85901b2da1949394", + "filename": "random/26949.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26949.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26949.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26949.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29396" + }, + { + "sha": "cf61f84042fe6e3bfcbcd0708aa1eef02e55a92f", + "filename": "random/2698.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2698.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2698.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2698.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20619" + }, + { + "sha": "dd54067ad8337b21f4e56eac2e3f239ce5b4f140", + "filename": "random/26983.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26983.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F26983.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F26983.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9974" + }, + { + "sha": "e4efb839b8d76e1dc15a2d40147505cb0240d57d", + "filename": "random/2703.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2703.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2703.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2703.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9830" + }, + { + "sha": "47d8481e26395c8f74a84e9d5b866d9d5d67ca36", + "filename": "random/27096.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27096.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27096.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27096.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8219" + }, + { + "sha": "ae3f69655ad3f217e84f507350e47de5440d9e28", + "filename": "random/27117.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27117.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27117.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27117.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18868" + }, + { + "sha": "db01523e04fbb69ee4e2e8868937deef62886dcc", + "filename": "random/27150.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27150.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27150.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27150.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32549" + }, + { + "sha": "7c7415c7257774e881973a191dd404594afa3054", + "filename": "random/27254.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27254.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27254.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27254.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32350" + }, + { + "sha": "f2b9aa62ba8d34bade88e74c5a68ef71bf5b562b", + "filename": "random/27271.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27271.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27271.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27271.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21418" + }, + { + "sha": "fa9a0917aba15cbdade4e51bab3643242e33aee7", + "filename": "random/27288.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27288.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27288.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27288.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6513" + }, + { + "sha": "37d6489969eb7eaa83349280165e1bb703adc762", + "filename": "random/27347.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27347.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27347.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27347.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11013" + }, + { + "sha": "739b529ea9681e07444d5ea7a073479dc0dda73d", + "filename": "random/27350.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27350.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27350.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27350.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27466" + }, + { + "sha": "2e2bf478986bfd8f98104b8fc8b7cef08f19be77", + "filename": "random/27428.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27428.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27428.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27428.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15628" + }, + { + "sha": "b6b9202e2108c59ebf5b5aed69f0d2124e9ed3bd", + "filename": "random/27434.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27434.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27434.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27434.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9942" + }, + { + "sha": "6cdd115afe04ea2f36bb34b1beac3db9c0a18a01", + "filename": "random/27436.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27436.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27436.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27436.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30831" + }, + { + "sha": "8c22ca2a0d9bb2ca8ee43d829a53ff05e0813eaa", + "filename": "random/2745.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2745.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2745.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2745.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9563" + }, + { + "sha": "f97dfee55cd15b839a2f940d5ec004e5613bcf8b", + "filename": "random/27455.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27455.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27455.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27455.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22951" + }, + { + "sha": "fa31d298ded666e92d2a6af301331b5fddce8a6f", + "filename": "random/27456.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27456.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27456.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27456.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29634" + }, + { + "sha": "38d373da105b51a3b10620f0bbc809f591948f7c", + "filename": "random/27504.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27504.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27504.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27504.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6920" + }, + { + "sha": "8ec8ae4ab1fa828cb924e852715d830956327447", + "filename": "random/27523.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27523.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27523.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27523.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15990" + }, + { + "sha": "2ad943094bf115f22251f9392998cac3bb4732e5", + "filename": "random/27543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4019" + }, + { + "sha": "c8416ad52337082a1d8bb954ba639814889cca26", + "filename": "random/27635.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27635.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27635.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27635.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32036" + }, + { + "sha": "a372ad655a3858ec9e61d892e9acfdbeaaa3fc3a", + "filename": "random/2774.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2774.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2774.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2774.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16611" + }, + { + "sha": "89cab80963d7256ebefcd6232c6e9e3b6d1a1edc", + "filename": "random/27753.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27753.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27753.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27753.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11574" + }, + { + "sha": "af001ce4df62e3841bf1a2298d8db8e5c7fff7d0", + "filename": "random/27791.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27791.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27791.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27791.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20734" + }, + { + "sha": "39e5b68206c47debfd8608d35b57d592b3074932", + "filename": "random/27850.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27850.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27850.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27850.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5877" + }, + { + "sha": "7a61a1e7b011e5c39597b388440bdf2e05c847e3", + "filename": "random/27860.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27860.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27860.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27860.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5324" + }, + { + "sha": "edae05cdfe211b185fdca04c4925c3eea339a9a4", + "filename": "random/27883.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27883.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27883.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27883.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16718" + }, + { + "sha": "1829ef50f6641a126f67dc07d9cfbe10d6693bec", + "filename": "random/27898.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27898.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F27898.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F27898.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21506" + }, + { + "sha": "723c01477c603423d705ce320910c4f14a307338", + "filename": "random/280.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F280.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F280.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F280.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24600" + }, + { + "sha": "236c602c6a04b81ccbd66ef41eaf9c0cedf92fe8", + "filename": "random/28032.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28032.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28032.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28032.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11044" + }, + { + "sha": "067dc35de968ea61bcf842ca1b0c7832ebc01ac6", + "filename": "random/28130.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28130.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28130.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28130.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18012" + }, + { + "sha": "424d1a1e89399ae31ef5b8296da5b8cd7c2eedc1", + "filename": "random/28179.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28179.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28179.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28179.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25899" + }, + { + "sha": "cf4d36f09b38a59cad2513616f02f16ced42a6ef", + "filename": "random/28350.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28350.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28350.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28350.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30311" + }, + { + "sha": "d44003a3a39fdc02a8fdaa94a61c6c9dff4bf83a", + "filename": "random/28387.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28387.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28387.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28387.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31898" + }, + { + "sha": "abd8839a7ff93a25ab0c719461b63bc78428c3ac", + "filename": "random/28463.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28463.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28463.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28463.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28507" + }, + { + "sha": "90841f2cc626c83e82d0a8274fa2a86340ec2194", + "filename": "random/28489.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28489.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28489.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28489.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2586" + }, + { + "sha": "162396eb906784daf0723ec440718bb23efee401", + "filename": "random/28614.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28614.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28614.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28614.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26097" + }, + { + "sha": "0064ea02805206cc850a64779fad73fa2b6fbeb0", + "filename": "random/2862.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2862.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F2862.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F2862.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26548" + }, + { + "sha": "0eb4c80d4ad1782cb21346941c7a7100706b99bf", + "filename": "random/28657.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28657.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28657.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28657.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23931" + }, + { + "sha": "5f145b460d1794e462b3eb96ceb947a956e73d70", + "filename": "random/28731.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28731.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28731.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28731.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31352" + }, + { + "sha": "9428181f2bbaa1d393214d100e0dba2b12ac625c", + "filename": "random/28743.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28743.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28743.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28743.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27172" + }, + { + "sha": "4c3dbae896348baf60961d0c2131cfe5aa121c15", + "filename": "random/28825.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28825.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28825.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28825.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22003" + }, + { + "sha": "eb1154fff9844adf343e69f868d6d1b677e836ca", + "filename": "random/28920.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28920.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28920.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28920.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18554" + }, + { + "sha": "fb583e0f883f17b128fc9e82c690afc0fab68ec0", + "filename": "random/28940.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28940.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28940.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28940.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8944" + }, + { + "sha": "3b11485254808b850f12532bfb165041b36b83e9", + "filename": "random/28996.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28996.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F28996.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F28996.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18020" + }, + { + "sha": "9e6a385fa3f837becd1bf4feff72af2ad6e20ed4", + "filename": "random/29039.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29039.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29039.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29039.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18053" + }, + { + "sha": "a28728c1896853948b1af6250d5867e4460c9aec", + "filename": "random/29079.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29079.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29079.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29079.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25694" + }, + { + "sha": "9fdc3a37966d662dfc4d3f3b15d09d1ff8340245", + "filename": "random/29181.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29181.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29181.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29181.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8991" + }, + { + "sha": "39f2aeb188742e987e61e8ef8f91be1acfd106a9", + "filename": "random/29188.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29188.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29188.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29188.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4817" + }, + { + "sha": "0e6f3c86ee02edab824591bdb05218af77a5d8b8", + "filename": "random/29284.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29284.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29284.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29284.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17472" + }, + { + "sha": "a8b6fd7eb2094a4351f931ce45fd4b5976b271f2", + "filename": "random/29294.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29294.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29294.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29294.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7504" + }, + { + "sha": "bae5cc81afbbdcffecb2bfa7ef4aeffabecb9bad", + "filename": "random/29337.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29337.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29337.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29337.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7123" + }, + { + "sha": "6a2c42ec76149b6bb5556e611754f5aaa3c59a6f", + "filename": "random/29373.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29373.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29373.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29373.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10327" + }, + { + "sha": "a57b5eb071d2a56ed65b74aa364645bc77480703", + "filename": "random/29498.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29498.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29498.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29498.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22307" + }, + { + "sha": "97fc622fb7cc83343f83439377d692712c7a7906", + "filename": "random/29547.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29547.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29547.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29547.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32153" + }, + { + "sha": "72ddb42af8d5aeed85e48671c144e9b5384fb2b0", + "filename": "random/29607.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29607.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29607.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29607.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13830" + }, + { + "sha": "89bb60c0fd19cd4ce30e4a0f31e6df4a06642830", + "filename": "random/29648.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29648.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29648.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29648.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14193" + }, + { + "sha": "2b615352a61e9c6938601e9d94bdb8026167ea75", + "filename": "random/29662.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29662.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29662.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29662.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18700" + }, + { + "sha": "82486f6d91b1aa4deab05499faaab1c458985383", + "filename": "random/29723.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29723.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29723.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29723.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30359" + }, + { + "sha": "92207ffab6359137215f2f8b10c0547af3e702d5", + "filename": "random/29749.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29749.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29749.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29749.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22734" + }, + { + "sha": "44b88aa386b0ed41fb010254ea20ff2f613d1d6b", + "filename": "random/29795.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29795.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29795.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29795.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1709" + }, + { + "sha": "a100b8169087f4b45b61ebb9f076ade21618fa52", + "filename": "random/29846.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29846.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29846.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29846.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19566" + }, + { + "sha": "b570ddbf520ee6a0919db43a247fd7a0c9b92c9b", + "filename": "random/29882.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29882.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29882.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29882.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+391" + }, + { + "sha": "cef6e0c63a50ce57357aa065f561a3f2dfb418db", + "filename": "random/29911.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29911.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29911.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29911.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30250" + }, + { + "sha": "73504dc4a187d074895355c09624c0a7491701e0", + "filename": "random/29937.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29937.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29937.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29937.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7767" + }, + { + "sha": "9e23270406ac98b4c1c3d312be2a09ae9090afd8", + "filename": "random/29978.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29978.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29978.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29978.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27293" + }, + { + "sha": "c4321ae013060a1b75a5cd2bfe03613e8ca8664b", + "filename": "random/29982.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29982.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F29982.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F29982.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21545" + }, + { + "sha": "fc14c60ed4646cbac50e21acead52c95504bd702", + "filename": "random/30060.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30060.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30060.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30060.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10477" + }, + { + "sha": "8ae86a4dea758c66d2c817bee5e62a67efb6d7a2", + "filename": "random/30071.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30071.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30071.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30071.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13883" + }, + { + "sha": "2fc3424acaa0e50bc8d5ca83709f929af4d81e17", + "filename": "random/30138.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30138.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30138.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30138.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18047" + }, + { + "sha": "1ac5b0ec46210362f1018e7e008891013147dcb0", + "filename": "random/30236.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30236.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30236.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30236.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2604" + }, + { + "sha": "dd26e61bafb3b79aa39fb4426942873dd5c0a87b", + "filename": "random/30255.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30255.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30255.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30255.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2318" + }, + { + "sha": "521f88090783f348dad3a38abf90898d1f826b29", + "filename": "random/30292.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30292.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30292.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30292.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13212" + }, + { + "sha": "75cee234e99a2b067c6f140e193a2b89293f096f", + "filename": "random/30315.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30315.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30315.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30315.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31777" + }, + { + "sha": "ca563993580c56a1d8c79763adba7fa9d3163db0", + "filename": "random/30320.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30320.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30320.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30320.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12799" + }, + { + "sha": "36fbf31256ba7c16082b351b55b2ac0dc9a17e3f", + "filename": "random/30341.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30341.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30341.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30341.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22961" + }, + { + "sha": "173edc2f8b9f29a7b6fcff0404cadca165740ab7", + "filename": "random/30415.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30415.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30415.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30415.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28759" + }, + { + "sha": "a6d392994bd58c8458c805113ffc1b39bbd774d0", + "filename": "random/30436.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30436.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30436.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30436.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15681" + }, + { + "sha": "4c2ba54c5429cee68baa137bb0a999c81045ac01", + "filename": "random/30443.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30443.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30443.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30443.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32354" + }, + { + "sha": "4879458197011f1cf84c6e0a08cee5fea9892cb5", + "filename": "random/30451.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30451.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30451.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30451.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15665" + }, + { + "sha": "41fdf95c8413981f78586637c86c79934d68b1e4", + "filename": "random/30457.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30457.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30457.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30457.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12150" + }, + { + "sha": "e207e6c4793e42b9cc865af1c9b0aa6b1890881d", + "filename": "random/30487.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30487.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30487.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30487.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28219" + }, + { + "sha": "65273b5a56fa5f9c82c991a8718db39fb4633073", + "filename": "random/30505.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30505.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30505.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30505.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32116" + }, + { + "sha": "356a2f9f496c809ad15765435c995963c854ebd5", + "filename": "random/30525.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30525.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30525.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30525.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6018" + }, + { + "sha": "fc49cbd6eae0ba930e9bd860411d1c5b3378d59c", + "filename": "random/30534.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30534.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30534.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30534.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16804" + }, + { + "sha": "b24dd7d32584d1d78c5297777c2b97bb274cf4c5", + "filename": "random/3065.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3065.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3065.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3065.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31196" + }, + { + "sha": "17c63cd65027dc9f08655faff0fb4a7b38e0ae0f", + "filename": "random/30676.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30676.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30676.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30676.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22736" + }, + { + "sha": "a733b0da47be4485fc397144b090370f50efb0b2", + "filename": "random/30789.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30789.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30789.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30789.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5538" + }, + { + "sha": "0e217f3806ea1220bf1748f8d9d1a591038f9de0", + "filename": "random/30993.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30993.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F30993.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F30993.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22721" + }, + { + "sha": "d352dc6bab553c2466d303cc641247210a8d0335", + "filename": "random/31108.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31108.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31108.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31108.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17441" + }, + { + "sha": "ec1a9150689ae197402ef52f31119c418dc37c5f", + "filename": "random/31138.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31138.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31138.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31138.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16774" + }, + { + "sha": "2bfce31d93a30902cb3334f3ab7227e24c840ca3", + "filename": "random/3115.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3115.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3115.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3115.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31573" + }, + { + "sha": "b6c92a0a29f788ea2a1a1dc85e05c1480fe225a5", + "filename": "random/31197.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31197.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31197.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31197.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24242" + }, + { + "sha": "b93b8dbfed15e664ba916b7d9bc43477380e4f25", + "filename": "random/31216.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31216.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31216.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31216.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29225" + }, + { + "sha": "5a2287d489b1c4769f682417f4aeb0d6f13abf2e", + "filename": "random/31225.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31225.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31225.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31225.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15193" + }, + { + "sha": "a0e873a3d9fb9ce330000e00e25b7fef2eca7b0a", + "filename": "random/31269.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31269.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31269.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31269.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12545" + }, + { + "sha": "de858e2fc56e9064cb89446c737d3444d8410154", + "filename": "random/31272.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31272.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31272.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31272.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20777" + }, + { + "sha": "fbc4ca6582b9c9534ff63e7f1a4a0251bb130445", + "filename": "random/31320.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31320.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31320.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31320.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5961" + }, + { + "sha": "c52024da24d16ac6a73ffa2f64db31ed31cc1629", + "filename": "random/31326.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31326.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31326.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31326.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4679" + }, + { + "sha": "3d556c7907c601765c5e469ee65227e0e4f041b1", + "filename": "random/31333.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31333.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31333.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31333.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16306" + }, + { + "sha": "653abd695b5a3fc992fe7c68d744c3929762eeec", + "filename": "random/31343.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31343.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31343.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31343.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22454" + }, + { + "sha": "ce71ff7b0549d82c08eff5a02408a65ac7d6f445", + "filename": "random/31377.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31377.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31377.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31377.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11658" + }, + { + "sha": "8fba6011f92adbfac7ecaa7710817fd9fbcd9a80", + "filename": "random/31427.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31427.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31427.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31427.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17016" + }, + { + "sha": "bc51cd774c9c49bd386a719dc326efcd6630c8d6", + "filename": "random/31442.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31442.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31442.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31442.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1050" + }, + { + "sha": "09e35abcf3b221db668761b6c6cf4e099b13e99b", + "filename": "random/31632.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31632.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31632.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31632.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1113" + }, + { + "sha": "ddf0577443e732e3595d6c280507b0a2fd5e01b0", + "filename": "random/31714.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31714.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31714.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31714.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22937" + }, + { + "sha": "bd739743e92231e5dd1777041e3a113ba41609b2", + "filename": "random/31756.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31756.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31756.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31756.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14018" + }, + { + "sha": "ca29e0b2101622db81d049a7c4e253ef53f995cb", + "filename": "random/3180.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3180.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3180.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3180.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23565" + }, + { + "sha": "e2f5cf779fa0e27c2d4ea51f219d7c1a95d01d00", + "filename": "random/31859.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31859.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31859.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31859.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4626" + }, + { + "sha": "8e3f1071a689df6dd8db4377e5aaddff6d5d089a", + "filename": "random/31868.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31868.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31868.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31868.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25370" + }, + { + "sha": "5d6b6def31c1eb7d1ed3f5b259a1374ccdc35e62", + "filename": "random/3190.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3190.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3190.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3190.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21740" + }, + { + "sha": "9325fd9dfaa55fdcdf98c1a709d59cc9c5e8faab", + "filename": "random/31907.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31907.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31907.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31907.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9438" + }, + { + "sha": "b2224788ac289dd6ab5d4222ed610a6d44f22368", + "filename": "random/31924.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31924.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31924.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31924.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10444" + }, + { + "sha": "c105be5fb329a704fc19ad8d1755336b0f9b29eb", + "filename": "random/31973.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31973.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31973.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31973.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1715" + }, + { + "sha": "5a4b05c995f6c9b291c8b65e252b8be4045b625f", + "filename": "random/31985.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31985.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F31985.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F31985.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13520" + }, + { + "sha": "ba66a7d2c746e0fc8d203ed3d7d2d92b5eac9499", + "filename": "random/32037.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32037.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32037.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32037.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28433" + }, + { + "sha": "3c31c02beb627a7df5e433afbad8d6cbdd0f26d5", + "filename": "random/32097.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32097.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32097.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32097.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24893" + }, + { + "sha": "6a4d0bfefef2b56f650e076245fa721fc1d39285", + "filename": "random/3211.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3211.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3211.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3211.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10853" + }, + { + "sha": "d427b49717ae757b20ce777bb03d6d92e7760caf", + "filename": "random/32156.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14175" + }, + { + "sha": "fd151bc8fed218cb83844cf56e781535b3e788f5", + "filename": "random/32161.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32161.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32161.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32161.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30956" + }, + { + "sha": "f4b47c593af4159327b424d35485addf307dc838", + "filename": "random/32164.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32164.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32164.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32164.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3636" + }, + { + "sha": "401fa7b635f8a581ff0452be4efc8bc0ea192555", + "filename": "random/32212.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32212.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32212.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32212.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8311" + }, + { + "sha": "fe1649522624bf42779c6f7a312b200dc792cc4a", + "filename": "random/32221.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32221.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32221.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32221.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26720" + }, + { + "sha": "07eda112ac61613bba586d9881adcd219078c780", + "filename": "random/32247.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32247.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32247.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32247.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12965" + }, + { + "sha": "b5307fe748c71acb3161bb8e9359127522f90a84", + "filename": "random/32301.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32301.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32301.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32301.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27770" + }, + { + "sha": "0c78dff5396f4da47fa36439f997c50b99de6e2b", + "filename": "random/3236.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3236.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3236.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3236.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18167" + }, + { + "sha": "d00808b1ee9461307e21f6c425d366bddd8c5506", + "filename": "random/32452.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32452.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32452.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32452.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23444" + }, + { + "sha": "ed2d82a151d26d37c0439d008e1a2a9db132873b", + "filename": "random/32468.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32468.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32468.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32468.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28681" + }, + { + "sha": "8381011cfb50ee8f6adbdd9638f258e767bcfee1", + "filename": "random/3250.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3250.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3250.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3250.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5743" + }, + { + "sha": "37a2cebe6b9c9ea32b854654fa6fe1e4535adfec", + "filename": "random/32543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2380" + }, + { + "sha": "bd382c51e569546b26900f34adb41d55a9e3e01c", + "filename": "random/32560.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32560.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32560.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32560.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22501" + }, + { + "sha": "6bc7b9d3c5d763e9663d3e17b301f9e2dd380127", + "filename": "random/32604.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32604.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32604.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32604.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19032" + }, + { + "sha": "079ecfa763f098f67914dd7ee1d92b7d0e3b3644", + "filename": "random/3268.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3268.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3268.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3268.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6375" + }, + { + "sha": "824cab0dc3653ea5ed273b2c2de5492dc913f4a4", + "filename": "random/32713.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32713.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32713.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32713.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1867" + }, + { + "sha": "bb8a6f2999940f9a823c200171a461ab35b6890c", + "filename": "random/32739.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32739.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32739.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32739.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9389" + }, + { + "sha": "dd134a98acea047b23d73ec7d9dd3d4e777b391a", + "filename": "random/32764.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32764.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F32764.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F32764.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8820" + }, + { + "sha": "e8d0f83fcf6496300e08d292b26b018f92d3a6c5", + "filename": "random/3315.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3315.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3315.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3315.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2031" + }, + { + "sha": "5d9966de0224986b4c43066b918b51ca8b75041b", + "filename": "random/3361.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3361.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3361.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3361.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12027" + }, + { + "sha": "965bdeed02b232ba2c1545537560fbe3f92e3bd8", + "filename": "random/3415.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3415.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3415.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3415.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23269" + }, + { + "sha": "1985b89f4c25ac4a11207dc553a8eb76b3613389", + "filename": "random/3419.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3419.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3419.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3419.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16782" + }, + { + "sha": "c179a536e8efae2fb1db1e599e46443e22a5e5ac", + "filename": "random/3471.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3471.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3471.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3471.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4665" + }, + { + "sha": "6c113b84f8745b7d3d8289b7eec0243873d3a319", + "filename": "random/349.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F349.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F349.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F349.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23472" + }, + { + "sha": "74e006961cb04c182cf632c42417a83502a66c14", + "filename": "random/3524.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3524.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3524.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3524.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14236" + }, + { + "sha": "24ee76b79c096dd79181971167a305a13b00e554", + "filename": "random/3599.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3599.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3599.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3599.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29416" + }, + { + "sha": "d4024fcbba7f2672c360b084602c2b840908c07f", + "filename": "random/367.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23199" + }, + { + "sha": "6482611da76dca3196f8f3dcb0b95e75d5584b7e", + "filename": "random/3792.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3792.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3792.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3792.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7401" + }, + { + "sha": "c4296d9453b68058822d6bc6b1eda6c477f9a43a", + "filename": "random/3810.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3810.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3810.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3810.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23322" + }, + { + "sha": "55f73b9c653fd35d0f2f613ac5604acaa7cdd75a", + "filename": "random/3824.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3824.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3824.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3824.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6176" + }, + { + "sha": "bc71cc55d3a04c92a93590a0f9e8d06cfc4b9497", + "filename": "random/3887.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3887.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3887.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3887.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4254" + }, + { + "sha": "2ff09d433e4f41205a52043e673218ebc7e53b86", + "filename": "random/3936.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3936.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3936.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3936.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16213" + }, + { + "sha": "5d8c6c43e33c41a7a3564459396d81593cafdf7e", + "filename": "random/3984.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3984.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F3984.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F3984.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6907" + }, + { + "sha": "0f254fd99eddd5c5f6c27c3774e98e2c90318393", + "filename": "random/399.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F399.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F399.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F399.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4002" + }, + { + "sha": "8f3983da9e0577e2bdb4653380424df7d8171a24", + "filename": "random/4051.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4051.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4051.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4051.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23604" + }, + { + "sha": "16aef60ad2e87db3ee8dc7ccb6ab9bf478c184e2", + "filename": "random/4073.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4073.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4073.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4073.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6777" + }, + { + "sha": "c619d7c16d46e5be901bbbc852de2f302d4dcd76", + "filename": "random/4089.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4089.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4089.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4089.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20538" + }, + { + "sha": "d15f2844dd107d5e4e41133eb33fda0c18ef45b6", + "filename": "random/4120.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4120.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4120.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4120.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11914" + }, + { + "sha": "2351a85dcb1b535bdf8eeb685b173c8f18e0dd0e", + "filename": "random/4198.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4198.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4198.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4198.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2692" + }, + { + "sha": "367c84983477e515cc770de880b71ab8b7945def", + "filename": "random/4213.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4213.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4213.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4213.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31019" + }, + { + "sha": "a8836cc225f296dcc75475972a9d2a391d322e71", + "filename": "random/4232.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4232.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4232.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4232.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14256" + }, + { + "sha": "aa0444dab315089f43cec839d3081fc7b9952fb4", + "filename": "random/44.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F44.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F44.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F44.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5926" + }, + { + "sha": "ec42e6d49a9f887b4263755068bb31dfe6ad2a7e", + "filename": "random/4536.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4536.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4536.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4536.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+2142" + }, + { + "sha": "ba3343d500bff97f47cbb4bb424495a516d0f223", + "filename": "random/4547.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4547.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4547.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4547.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1158" + }, + { + "sha": "2757acec793df8eab3da60f93bc07da374270177", + "filename": "random/4710.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4710.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4710.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4710.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18871" + }, + { + "sha": "2cea19324829c833899042c442ffc6f4c4f56853", + "filename": "random/4758.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4758.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4758.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4758.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4669" + }, + { + "sha": "d17d98f5402d443eb1a64cd9562d69c07a7c34f4", + "filename": "random/4854.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4854.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4854.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4854.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30641" + }, + { + "sha": "c3d17068ab0aa1b389b29541304fe38a784f3317", + "filename": "random/4871.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4871.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4871.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4871.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31557" + }, + { + "sha": "b2b46630d470ba7c54db130fa2836f40d31b8675", + "filename": "random/4880.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4880.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F4880.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F4880.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12665" + }, + { + "sha": "dae66e9b33f570b3b3557ca76607dd8851a7d166", + "filename": "random/5123.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5123.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5123.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5123.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22768" + }, + { + "sha": "e1b3454b67f39d9df31278a6b8e8c35c8faa1af0", + "filename": "random/5129.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5129.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5129.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5129.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21276" + }, + { + "sha": "cc70564368ddcd2217f125589940cbece5b196bc", + "filename": "random/5179.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5179.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5179.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5179.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10103" + }, + { + "sha": "30db6f113dabacfe2fc154f65b66bc51f7398831", + "filename": "random/52.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F52.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F52.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F52.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31689" + }, + { + "sha": "29b6583c92faee1da429299073d1378fb3e7620a", + "filename": "random/5215.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5215.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5215.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5215.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13285" + }, + { + "sha": "7393d5c120be90fe4c15caf33b6ed96987648b39", + "filename": "random/5248.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5248.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5248.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5248.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8292" + }, + { + "sha": "1bdacf3ac3e475e502598e8a4989bf4c6bdce1a9", + "filename": "random/5261.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5261.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5261.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5261.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6153" + }, + { + "sha": "19d1e65cc85e42f6863700080bebc7d91e432e91", + "filename": "random/5357.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5357.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5357.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5357.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5999" + }, + { + "sha": "e72c6b3f4abd0bbadf8a67d7a3e9db6ac416facb", + "filename": "random/537.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F537.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F537.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F537.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3844" + }, + { + "sha": "edb8ba64b3dc77be677ca7e5a79934013b3d1ab7", + "filename": "random/5386.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5386.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5386.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5386.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24579" + }, + { + "sha": "925298e9ab04a2e3ca970a5e853cb0266784590a", + "filename": "random/5494.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5494.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5494.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5494.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16182" + }, + { + "sha": "be1db4f66466528d502219e0b16f92b57999b179", + "filename": "random/5619.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5619.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5619.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5619.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24714" + }, + { + "sha": "87ada86e16e0d5fd5bcf825a3a6e56f11fcabd80", + "filename": "random/5640.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5640.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5640.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5640.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16443" + }, + { + "sha": "fc90b3526b983eb5d9dc9c9cda97fdc380afd421", + "filename": "random/5647.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5647.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5647.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5647.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24449" + }, + { + "sha": "db638bdbcbe80d9c598e9f5f863bac217afde0c0", + "filename": "random/5654.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5654.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5654.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5654.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8302" + }, + { + "sha": "757d7236455ae723277c63df11c47a56e2edbcda", + "filename": "random/566.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F566.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F566.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F566.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27324" + }, + { + "sha": "b7b17e5abb71d1f629581885b8b542203c8e6607", + "filename": "random/568.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F568.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F568.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F568.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29348" + }, + { + "sha": "323d1bb416cdaf92a2e745a9b4d01a70b920e993", + "filename": "random/5794.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5794.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5794.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5794.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27765" + }, + { + "sha": "fde32dc6d61a8ac3742bc85798807781911c1441", + "filename": "random/5871.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5871.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5871.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5871.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10251" + }, + { + "sha": "45fb0330726448967eea18e27f98a0e34f459eed", + "filename": "random/5886.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5886.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5886.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5886.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13043" + }, + { + "sha": "0da6778c254aaeea561607fa77b74220498d1db8", + "filename": "random/5924.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5924.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F5924.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F5924.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19095" + }, + { + "sha": "8f72695599a8b84e0b968fbcab44689435d1c75f", + "filename": "random/596.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F596.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F596.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F596.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25505" + }, + { + "sha": "fc90b3526b983eb5d9dc9c9cda97fdc380afd421", + "filename": "random/6080.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6080.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6080.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6080.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24449" + }, + { + "sha": "42670a9cc5d6841594976453187505eafaed8c6f", + "filename": "random/6401.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6401.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6401.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6401.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25269" + }, + { + "sha": "48fba8aaf1685c89ed12d84403a668e1932dc72b", + "filename": "random/6407.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6407.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6407.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6407.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24905" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json new file mode 100644 index 0000000000..d847125437 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json @@ -0,0 +1,1178 @@ +{ + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "node_id": "C_kwDOJzFPltoAKGI4MzgxMmFhNzZiYjdjM2M0M2RhOTZmYmY4YWVjMWU0NWRiODc2MjQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:50:57Z" + }, + "message": "A commit with lots of files", + "tree": { + "sha": "6718afb2869b086c47122e4187b14585fed52644", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/6718afb2869b086c47122e4187b14585fed52644" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/5cd73f73a713a9b912a6c82334d6b7c7dab0fe96" + } + ], + "stats": { + "total": 691, + "additions": 691, + "deletions": 0 + }, + "files": [ + { + "sha": "433f78acbfd1f56d53cbc44549699280b2e87dc3", + "filename": "random/6411.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6411.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6411.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6411.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+7763" + }, + { + "sha": "08171a97c9afd62ed7e4d222f5880cf7fc78c38b", + "filename": "random/6419.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6419.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6419.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6419.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+11481" + }, + { + "sha": "c605e12ff6e8b0197b7a2684a3a46a3606fed90a", + "filename": "random/6517.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6517.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6517.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6517.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29138" + }, + { + "sha": "ed8dab2ddacfb44bff0ffb2cee1161968897b485", + "filename": "random/6543.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6543.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6543.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6543.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12811" + }, + { + "sha": "f878d19a4c36561a3586c25fe6744b7253ba755f", + "filename": "random/6559.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6559.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6559.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6559.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18017" + }, + { + "sha": "9bad6a7184b8ae5090a227ce8c65fead60e9b713", + "filename": "random/6578.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6578.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6578.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6578.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24328" + }, + { + "sha": "4cb64e99da939785ec5c2a078ba65d0dc4e5a24f", + "filename": "random/6646.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6646.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6646.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6646.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12261" + }, + { + "sha": "0e2b31626ecf3353ea1c5a2eb28046092dd31637", + "filename": "random/6659.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6659.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6659.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6659.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9674" + }, + { + "sha": "3d068fdc94329daeb7dac8ede8ce564449f797fd", + "filename": "random/6690.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6690.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6690.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6690.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26012" + }, + { + "sha": "93fea434a69840388dbfd3d5e43500543f9f05a9", + "filename": "random/6715.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6715.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6715.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6715.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18697" + }, + { + "sha": "acfc85386a6573735813604fb029f485c487b05b", + "filename": "random/6779.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6779.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6779.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6779.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28734" + }, + { + "sha": "14fb1a6bf18714846b38bfd600deaf9e0e6c527d", + "filename": "random/6842.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6842.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6842.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6842.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32070" + }, + { + "sha": "93575b0e7d7857c4e49852502e55ae3764ea33a2", + "filename": "random/691.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F691.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F691.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F691.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24971" + }, + { + "sha": "e04fc8f96ed864576b24cfef22e07eb297f9ef4d", + "filename": "random/6948.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6948.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6948.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6948.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21333" + }, + { + "sha": "d2a5225519bcd94c3c6b4902a8e9f012007465a6", + "filename": "random/697.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F697.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F697.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F697.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4548" + }, + { + "sha": "0f8e9bf3760f7cf609ccc693c2ea7d86b2a6abc8", + "filename": "random/6989.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6989.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F6989.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F6989.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19144" + }, + { + "sha": "8d3ce569f4eecc79e7216b856eff529a66cfb31b", + "filename": "random/7027.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7027.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7027.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7027.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+5278" + }, + { + "sha": "7b2e80dab1bb2f664fc384c2ae6226fa36279596", + "filename": "random/7095.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7095.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7095.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7095.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10608" + }, + { + "sha": "1e57668da4947e38cd0ef03190fcfcea45e02eab", + "filename": "random/7141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15494" + }, + { + "sha": "477a586314ed389c8580f1e26e1763e6ba350e92", + "filename": "random/7147.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7147.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7147.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7147.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8364" + }, + { + "sha": "f2644a2bc197ef050b3391b1dc650fbe74ad82a0", + "filename": "random/7151.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7151.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7151.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7151.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28524" + }, + { + "sha": "95ace1a28cae462a7e4e0e909573f264b3d90e73", + "filename": "random/7186.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7186.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7186.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7186.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12191" + }, + { + "sha": "3d53c2e3506c519fdc9ebbe18ad7cf0b94b3824c", + "filename": "random/7193.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7193.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7193.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7193.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20852" + }, + { + "sha": "3088470482f40f047b09abdd0a8db0afee8bf807", + "filename": "random/7197.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7197.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7197.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7197.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19327" + }, + { + "sha": "7491812c464ecfdf6153ecf9e10deb470a09d4e7", + "filename": "random/7296.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7296.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7296.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7296.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+6529" + }, + { + "sha": "7e8c8fed96c8257342a4de03fb53cfd7326dff3c", + "filename": "random/7419.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7419.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7419.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7419.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+4831" + }, + { + "sha": "ac9403655e57def1a9b6c7bee5a973277d52e347", + "filename": "random/7431.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7431.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7431.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7431.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9421" + }, + { + "sha": "db5eff4d467aa3a41b3b64be3a8ceece6cd8f753", + "filename": "random/7483.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7483.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7483.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7483.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25492" + }, + { + "sha": "668e564f6deb899bdfd868841f13162635020bef", + "filename": "random/7500.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7500.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7500.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7500.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24030" + }, + { + "sha": "3f894f77c3f71971e31643c5e29a274341575173", + "filename": "random/7542.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7542.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7542.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7542.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1653" + }, + { + "sha": "9e486411ed0855c07f1e789f7adedee4193dfaa1", + "filename": "random/7575.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7575.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7575.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7575.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28522" + }, + { + "sha": "7114a2e94a1bd1a589120042186241f0fe94b54f", + "filename": "random/7619.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7619.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7619.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7619.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22955" + }, + { + "sha": "940035f801340ca870beef2698fc77254b85bb46", + "filename": "random/7634.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7634.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7634.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7634.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32702" + }, + { + "sha": "4467051c6aa7b371e663508402b1b563b4f5055e", + "filename": "random/7683.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7683.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7683.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7683.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15024" + }, + { + "sha": "295edcf38f059089c792ede896256e9fc318844c", + "filename": "random/7697.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7697.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7697.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7697.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29504" + }, + { + "sha": "4c79e0e38d18dc468211888eb02277bead307fa2", + "filename": "random/7749.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7749.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7749.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7749.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27701" + }, + { + "sha": "f0d3814dfe951256673d2280bfdc698f318e1e17", + "filename": "random/7767.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7767.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7767.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7767.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31664" + }, + { + "sha": "187d7d63e55134e03718a6c5fbbd307f37f188fc", + "filename": "random/7817.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7817.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F7817.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F7817.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12663" + }, + { + "sha": "17ce1d62bb2cab4d2f02d431a125eba909b480fb", + "filename": "random/8054.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8054.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8054.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8054.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26459" + }, + { + "sha": "fb824b53618fcc0bf7d96242b33c5d9fabcea23c", + "filename": "random/8101.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8101.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8101.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8101.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18808" + }, + { + "sha": "a6325dbed626ae20b762d2e476470c08a89feaff", + "filename": "random/8113.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8113.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8113.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8113.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14874" + }, + { + "sha": "f756540ed7bd33d0542e38d82cbba11d218e7e9b", + "filename": "random/8139.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8139.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8139.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8139.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22756" + }, + { + "sha": "c3d17068ab0aa1b389b29541304fe38a784f3317", + "filename": "random/8141.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8141.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8141.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8141.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31557" + }, + { + "sha": "737f026267fe74049c81248a353c77919a865845", + "filename": "random/8189.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8189.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8189.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8189.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21166" + }, + { + "sha": "0a0b6fe58e42c4f64123b6737ce42ee1be722944", + "filename": "random/8198.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8198.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8198.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8198.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22998" + }, + { + "sha": "9b5dedb821ccf23e133bb75cf6062b722d6bd0dd", + "filename": "random/8203.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8203.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8203.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8203.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+31760" + }, + { + "sha": "1eb0c5e16013e6e7572f60f36c99c0b8de0e1476", + "filename": "random/8258.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8258.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8258.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8258.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1443" + }, + { + "sha": "d101dea5562236a4b73af290d0e54e922f9646db", + "filename": "random/8342.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8342.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8342.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8342.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+15071" + }, + { + "sha": "6129a53e932a7133baf4dbd9af34fbd5e992da2d", + "filename": "random/8404.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8404.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8404.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8404.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3853" + }, + { + "sha": "2acfae7181e1173970bcf66a8a1f5b64e29c3ac9", + "filename": "random/8488.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8488.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8488.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8488.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14966" + }, + { + "sha": "465e8a52ad230774ec3bd3f8a6776f23e3ee29f8", + "filename": "random/8608.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8608.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8608.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8608.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9692" + }, + { + "sha": "a047849be99f6d66f18db6766ee2b64b136288fd", + "filename": "random/8629.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8629.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8629.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8629.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14597" + }, + { + "sha": "f8a21f1b4964ec7681d83942314b88c7f269c30b", + "filename": "random/8636.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8636.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8636.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8636.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12217" + }, + { + "sha": "a9fd72a7fc72b1767635371ea19be36ec6399f19", + "filename": "random/8724.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8724.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8724.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8724.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3279" + }, + { + "sha": "31382fbfc5b6fba30abd9fbd0eaaa11b06871e6f", + "filename": "random/8859.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8859.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8859.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8859.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29381" + }, + { + "sha": "d342f714ea7143d43cda591f1986f791613e0907", + "filename": "random/8882.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8882.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8882.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8882.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20668" + }, + { + "sha": "70a4157a83cdd268beb48e58cc5d5234ab5e7577", + "filename": "random/8885.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8885.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8885.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8885.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20310" + }, + { + "sha": "a2113d9b866e48188df16db5de5408553197e6cf", + "filename": "random/8934.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8934.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8934.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8934.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+3406" + }, + { + "sha": "76cea4a48be9775e47bd52cc9f1b73287ccb10f9", + "filename": "random/8949.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8949.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8949.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8949.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10173" + }, + { + "sha": "4c11389fbd1ec8a07c5af19ef1b6eb1cc56298be", + "filename": "random/8956.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8956.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8956.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8956.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1213" + }, + { + "sha": "7dcb113f49c1e4563c5971971031bc40044c7327", + "filename": "random/896.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F896.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F896.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F896.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+16223" + }, + { + "sha": "cbea929e5923444da00e4d66ba9c9b1f3a62b6d8", + "filename": "random/8968.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8968.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8968.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8968.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+24437" + }, + { + "sha": "1fb8181fa067965567c0a9013f00b6abc3fabbdf", + "filename": "random/8994.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8994.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F8994.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F8994.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23655" + }, + { + "sha": "75eda8d1cda42b65f94bed0f37ae01a87d0b7355", + "filename": "random/9016.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9016.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+19378" + }, + { + "sha": "ad120f8060ecbd270e2389363d676dbbbc926948", + "filename": "random/9022.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9022.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+25931" + }, + { + "sha": "926254112306e8b0266c8305b7603ee3b42ba89a", + "filename": "random/9039.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9039.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27153" + }, + { + "sha": "251d54deaf456022558d283ce73fb28aef7eec6a", + "filename": "random/9051.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9051.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9121" + }, + { + "sha": "bea6c87fde2c2d5bf0fa83246251b56b39d6329c", + "filename": "random/9122.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9122.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+21593" + }, + { + "sha": "f992d65065b2c6c6e30aefd3086a3302b406dfd4", + "filename": "random/9126.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+8947" + }, + { + "sha": "7cf74aca5488cafda4f7feabb0c15976a9d1d56b", + "filename": "random/9156.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+13964" + }, + { + "sha": "3d068fdc94329daeb7dac8ede8ce564449f797fd", + "filename": "random/9165.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9165.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+26012" + }, + { + "sha": "1ad4e3d972a12cbe574ea529b0ed4e8122ec10c9", + "filename": "random/922.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+32311" + }, + { + "sha": "b3084c0a62aab761640b385dc96a046ec7d1da8e", + "filename": "random/9220.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9220.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23889" + }, + { + "sha": "7182af9961399938b8c00e1e2d84ce7ebb2a2dab", + "filename": "random/9286.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9286.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28563" + }, + { + "sha": "35fc9dd49e1abb8b0cc6c8a0a2e42298e68ec4e6", + "filename": "random/9291.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9291.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14003" + }, + { + "sha": "faa29ef7e5d0be6da92ae8920b95dbad1a331f21", + "filename": "random/9347.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9347.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+1184" + }, + { + "sha": "37ce6f2909f097320b07d808958066b1df4d4b6f", + "filename": "random/9367.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+27492" + }, + { + "sha": "f609e173d2baf6d4a50785ca9f505cc4ad75da22", + "filename": "random/9383.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+20661" + }, + { + "sha": "738688342c10ed3106d152820e942dd57257a58c", + "filename": "random/9400.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9400.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+28397" + }, + { + "sha": "eac03d8bcdaf572eee49f967e1921f2ab16b3c69", + "filename": "random/952.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F952.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10072" + }, + { + "sha": "1125b8a65723efe5e00b0311d6587c5c93e38e26", + "filename": "random/9533.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9533.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+18623" + }, + { + "sha": "74a16aae535681e4c92b7875189fc79fc05da739", + "filename": "random/9567.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9567.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22985" + }, + { + "sha": "736dfba31951429e99623e9f92f1287399260e0c", + "filename": "random/9601.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9601.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+14968" + }, + { + "sha": "61560f2b8a50f81bc2da2ed4cbbde276304c0d8c", + "filename": "random/9658.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9658.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+23193" + }, + { + "sha": "212000d5d19addce43e0c6d756a99cbf6e2bf857", + "filename": "random/970.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F970.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+29137" + }, + { + "sha": "d8d30652a50892d149a3b22618e8140f2cab0012", + "filename": "random/9780.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9780.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+22061" + }, + { + "sha": "3c3026c1544bb8b9a9cf6e8eb3fdaf7c82d593fa", + "filename": "random/9786.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9786.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+17545" + }, + { + "sha": "5e70af066247fa61b1d80640a177d57f43dac27b", + "filename": "random/9852.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+30327" + }, + { + "sha": "d5633366b7d2d7e7ccf2501887462a512358356f", + "filename": "random/9958.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9958.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+9532" + }, + { + "sha": "88af16f4f329470ef3124e15f732476930ab5e01", + "filename": "random/998.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F998.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+12704" + }, + { + "sha": "1819e489226215dfc59436313c6aa70a2d764672", + "filename": "random/9985.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9985.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -0,0 +1 @@\n+10402" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/user-1.json new file mode 100644 index 0000000000..5bb6552b14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 2, + "public_gists": 0, + "followers": 0, + "following": 1, + "created_at": "2015-02-09T11:27:02Z", + "updated_at": "2023-06-19T12:28:16Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..7bf60a3944 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,49 @@ +{ + "id": "4d7f2e33-8e42-4e99-99db-86c2dc6bb81c", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f088026de3a7d5b131d22cc2e1f5f9c2162bacfd941b25b52b253d81245f2ee3\"", + "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4719", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "281", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F514:B515:120F2CB:12360FC:6495A1FF" + } + }, + "uuid": "4d7f2e33-8e42-4e99-99db-86c2dc6bb81c", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..848efa5ffa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,49 @@ +{ + "id": "937e58f8-1055-4d6f-a726-c13b31e9d276", + "name": "repos_hub4j-test-org_committest", + "request": { + "url": "/repos/hub4j-test-org/CommitTest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"98268d9c57c53e7c3cf61ab77b0aa654fc9cad2b9cf048989e80acada2aaccd0\"", + "Last-Modified": "Fri, 23 Jun 2023 12:58:28 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "282", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C181:F1BC:7FCB98:80D3D4:6495A200" + } + }, + "uuid": "937e58f8-1055-4d6f-a726-c13b31e9d276", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json new file mode 100644 index 0000000000..bcf431f37a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json @@ -0,0 +1,53 @@ +{ + "id": "42f8aadc-7eac-471c-bc8f-60291290d40a", + "name": "repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "request": { + "url": "/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"fe0ab35c4e5ff35a7bff89af2960c965c4b03095cf76762061fa74cbb6ae5c6a\"", + "Last-Modified": "Fri, 23 Jun 2023 09:50:57 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "283", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "EA9C:2C0D:85A658F:86E30EA:6495A200", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "42f8aadc-7eac-471c-bc8f-60291290d40a", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-CommitTest-commits-b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-hub4j-test-org-CommitTest-commits-b83812aa76bb7c3c43da96fbf8aec1e45db87624-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json new file mode 100644 index 0000000000..4051f559ce --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json @@ -0,0 +1,52 @@ +{ + "id": "dcdfb589-d188-4e4e-9e87-f1b7369d91bb", + "name": "repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "request": { + "url": "/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-5.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"fe0ab35c4e5ff35a7bff89af2960c965c4b03095cf76762061fa74cbb6ae5c6a\"", + "Last-Modified": "Fri, 23 Jun 2023 09:50:57 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "284", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "5E09:F1BC:7FD03C:80D89C:6495A201", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "dcdfb589-d188-4e4e-9e87-f1b7369d91bb", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-CommitTest-commits-b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-CommitTest-commits-b83812aa76bb7c3c43da96fbf8aec1e45db87624-2", + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json new file mode 100644 index 0000000000..bf3d35a816 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json @@ -0,0 +1,50 @@ +{ + "id": "b10ddeee-5c94-44b8-80b2-72a4d488a087", + "name": "repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "request": { + "url": "/repositories/657543062/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624?page=2", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-6.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"71a4e28c024a90d3ac40d5700bc6e4a731eaa66a31d23b01e671f55e0ed74dd8\"", + "Last-Modified": "Fri, 23 Jun 2023 09:50:57 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "285", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "F6E7:A1EF:40DB65B:418985B:6495A201", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "b10ddeee-5c94-44b8-80b2-72a4d488a087", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json new file mode 100644 index 0000000000..f9e6753652 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json @@ -0,0 +1,50 @@ +{ + "id": "b811520b-bbbd-4eed-ad40-1fa5d9ed6568", + "name": "repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "request": { + "url": "/repositories/657543062/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624?page=3", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repositories_657543062_commits_b83812aa76bb7c3c43da96fbf8aec1e45db87624-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"07966804a7e98b742aebdbb06a50f0b9653670e969a96a3d6da2b3c54674ec29\"", + "Last-Modified": "Fri, 23 Jun 2023 09:50:57 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "286", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "A971:B121:5BFC9A8:5CE869A:6495A202", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "b811520b-bbbd-4eed-ad40-1fa5d9ed6568", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/user-1.json new file mode 100644 index 0000000000..019471521e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasLargeChange/mappings/user-1.json @@ -0,0 +1,49 @@ +{ + "id": "bb26e433-418a-41b3-9cfc-13e02826f765", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"b142ca081f3c3ae38c3b38386b1f54994546feb4c284595350117b14b741cd37\"", + "Last-Modified": "Mon, 19 Jun 2023 12:28:16 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "279", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "0640:B69E:7984EC6:7AC1A5E:6495A1FE" + } + }, + "uuid": "bb26e433-418a-41b3-9cfc-13e02826f765", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..d1155bee31 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,31 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "description": "Hub4j Test Org Description (this could be null or blank too)", + "name": "Hub4j Test Org Name (this could be null or blank too)", + "company": null, + "blog": "https://hub4j.url.io/could/be/null", + "location": "Hub4j Test Org Location (this could be null or blank too)", + "email": "hub4jtestorgemail@could.be.null.com", + "twitter_username": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 26, + "public_gists": 0, + "followers": 1, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2020-06-04T05:56:10Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..e846a32a4c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,129 @@ +{ + "id": 657543062, + "node_id": "R_kgDOJzFPlg", + "name": "CommitTest", + "full_name": "hub4j-test-org/CommitTest", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/CommitTest", + "description": "Repository used by CommitTest", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest", + "forks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/deployments", + "created_at": "2023-06-23T09:43:53Z", + "updated_at": "2023-06-23T12:58:28Z", + "pushed_at": "2023-06-23T09:52:49Z", + "git_url": "git://github.com/hub4j-test-org/CommitTest.git", + "ssh_url": "git@github.com:hub4j-test-org/CommitTest.git", + "clone_url": "https://github.com/hub4j-test-org/CommitTest.git", + "svn_url": "https://github.com/hub4j-test-org/CommitTest", + "homepage": null, + "size": 27, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json new file mode 100644 index 0000000000..56cb469415 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json @@ -0,0 +1,422 @@ +{ + "sha": "dabf0e89fe7107d6e294a924561533ecf80f2384", + "node_id": "C_kwDOJzFPltoAKGRhYmYwZTg5ZmU3MTA3ZDZlMjk0YTkyNDU2MTUzM2VjZjgwZjIzODQ", + "commit": { + "author": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:52:45Z" + }, + "committer": { + "name": "Stephen Horgan", + "email": "frink182@users.noreply.github.com", + "date": "2023-06-23T09:52:45Z" + }, + "message": "A commit with a few files", + "tree": { + "sha": "bf2f212df308d53119dc94ddc20eb596ca38e8ac", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/trees/bf2f212df308d53119dc94ddc20eb596ca38e8ac" + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/git/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/dabf0e89fe7107d6e294a924561533ecf80f2384", + "comments_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384/comments", + "author": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "url": "https://api.github.com/repos/hub4j-test-org/CommitTest/commits/b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "html_url": "https://github.com/hub4j-test-org/CommitTest/commit/b83812aa76bb7c3c43da96fbf8aec1e45db87624" + } + ], + "stats": { + "total": 28, + "additions": 0, + "deletions": 28 + }, + "files": [ + { + "sha": "75eda8d1cda42b65f94bed0f37ae01a87d0b7355", + "filename": "random/9016.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9016.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9016.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-19378" + }, + { + "sha": "ad120f8060ecbd270e2389363d676dbbbc926948", + "filename": "random/9022.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9022.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9022.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-25931" + }, + { + "sha": "926254112306e8b0266c8305b7603ee3b42ba89a", + "filename": "random/9039.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9039.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9039.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-27153" + }, + { + "sha": "251d54deaf456022558d283ce73fb28aef7eec6a", + "filename": "random/9051.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9051.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9051.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-9121" + }, + { + "sha": "bea6c87fde2c2d5bf0fa83246251b56b39d6329c", + "filename": "random/9122.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9122.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9122.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-21593" + }, + { + "sha": "f992d65065b2c6c6e30aefd3086a3302b406dfd4", + "filename": "random/9126.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9126.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9126.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-8947" + }, + { + "sha": "7cf74aca5488cafda4f7feabb0c15976a9d1d56b", + "filename": "random/9156.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9156.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9156.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-13964" + }, + { + "sha": "3d068fdc94329daeb7dac8ede8ce564449f797fd", + "filename": "random/9165.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9165.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9165.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-26012" + }, + { + "sha": "1ad4e3d972a12cbe574ea529b0ed4e8122ec10c9", + "filename": "random/922.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F922.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F922.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-32311" + }, + { + "sha": "b3084c0a62aab761640b385dc96a046ec7d1da8e", + "filename": "random/9220.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9220.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9220.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-23889" + }, + { + "sha": "7182af9961399938b8c00e1e2d84ce7ebb2a2dab", + "filename": "random/9286.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9286.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9286.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-28563" + }, + { + "sha": "35fc9dd49e1abb8b0cc6c8a0a2e42298e68ec4e6", + "filename": "random/9291.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9291.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9291.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-14003" + }, + { + "sha": "faa29ef7e5d0be6da92ae8920b95dbad1a331f21", + "filename": "random/9347.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9347.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9347.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-1184" + }, + { + "sha": "37ce6f2909f097320b07d808958066b1df4d4b6f", + "filename": "random/9367.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9367.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9367.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-27492" + }, + { + "sha": "f609e173d2baf6d4a50785ca9f505cc4ad75da22", + "filename": "random/9383.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9383.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9383.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-20661" + }, + { + "sha": "738688342c10ed3106d152820e942dd57257a58c", + "filename": "random/9400.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9400.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9400.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-28397" + }, + { + "sha": "eac03d8bcdaf572eee49f967e1921f2ab16b3c69", + "filename": "random/952.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F952.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F952.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-10072" + }, + { + "sha": "1125b8a65723efe5e00b0311d6587c5c93e38e26", + "filename": "random/9533.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9533.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9533.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-18623" + }, + { + "sha": "74a16aae535681e4c92b7875189fc79fc05da739", + "filename": "random/9567.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9567.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9567.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-22985" + }, + { + "sha": "736dfba31951429e99623e9f92f1287399260e0c", + "filename": "random/9601.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9601.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9601.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-14968" + }, + { + "sha": "61560f2b8a50f81bc2da2ed4cbbde276304c0d8c", + "filename": "random/9658.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9658.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9658.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-23193" + }, + { + "sha": "212000d5d19addce43e0c6d756a99cbf6e2bf857", + "filename": "random/970.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F970.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F970.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-29137" + }, + { + "sha": "d8d30652a50892d149a3b22618e8140f2cab0012", + "filename": "random/9780.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9780.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9780.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-22061" + }, + { + "sha": "3c3026c1544bb8b9a9cf6e8eb3fdaf7c82d593fa", + "filename": "random/9786.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9786.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9786.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-17545" + }, + { + "sha": "5e70af066247fa61b1d80640a177d57f43dac27b", + "filename": "random/9852.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9852.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9852.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-30327" + }, + { + "sha": "d5633366b7d2d7e7ccf2501887462a512358356f", + "filename": "random/9958.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9958.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9958.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-9532" + }, + { + "sha": "88af16f4f329470ef3124e15f732476930ab5e01", + "filename": "random/998.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F998.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F998.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-12704" + }, + { + "sha": "1819e489226215dfc59436313c6aa70a2d764672", + "filename": "random/9985.txt", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/CommitTest/blob/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "raw_url": "https://github.com/hub4j-test-org/CommitTest/raw/b83812aa76bb7c3c43da96fbf8aec1e45db87624/random%2F9985.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/CommitTest/contents/random%2F9985.txt?ref=b83812aa76bb7c3c43da96fbf8aec1e45db87624", + "patch": "@@ -1 +0,0 @@\n-10402" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/user-1.json new file mode 100644 index 0000000000..5bb6552b14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "frink182", + "id": 10921922, + "node_id": "MDQ6VXNlcjEwOTIxOTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/10921922?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/frink182", + "html_url": "https://github.com/frink182", + "followers_url": "https://api.github.com/users/frink182/followers", + "following_url": "https://api.github.com/users/frink182/following{/other_user}", + "gists_url": "https://api.github.com/users/frink182/gists{/gist_id}", + "starred_url": "https://api.github.com/users/frink182/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/frink182/subscriptions", + "organizations_url": "https://api.github.com/users/frink182/orgs", + "repos_url": "https://api.github.com/users/frink182/repos", + "events_url": "https://api.github.com/users/frink182/events{/privacy}", + "received_events_url": "https://api.github.com/users/frink182/received_events", + "type": "User", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 2, + "public_gists": 0, + "followers": 0, + "following": 1, + "created_at": "2015-02-09T11:27:02Z", + "updated_at": "2023-06-19T12:28:16Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..e2ec26c4fe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,49 @@ +{ + "id": "f8d620a1-71af-4fa1-be50-8c6aa3a1409a", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f088026de3a7d5b131d22cc2e1f5f9c2162bacfd941b25b52b253d81245f2ee3\"", + "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4711", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "289", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "A934:30DB:7E2118C:7F5DD25:6495A204" + } + }, + "uuid": "f8d620a1-71af-4fa1-be50-8c6aa3a1409a", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest-3.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest-3.json new file mode 100644 index 0000000000..3202ce8275 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest-3.json @@ -0,0 +1,49 @@ +{ + "id": "a3b98ee9-77ec-4550-a663-508488157642", + "name": "repos_hub4j-test-org_committest", + "request": { + "url": "/repos/hub4j-test-org/CommitTest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"98268d9c57c53e7c3cf61ab77b0aa654fc9cad2b9cf048989e80acada2aaccd0\"", + "Last-Modified": "Fri, 23 Jun 2023 12:58:28 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4710", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "290", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "10A2:EBFB:1188D2D:11AE877:6495A204" + } + }, + "uuid": "a3b98ee9-77ec-4550-a663-508488157642", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json new file mode 100644 index 0000000000..c5ec737bae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json @@ -0,0 +1,49 @@ +{ + "id": "36e33c12-afd0-490c-afd7-a2bbf73e5f2c", + "name": "repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384", + "request": { + "url": "/repos/hub4j-test-org/CommitTest/commits/dabf0e89fe7107d6e294a924561533ecf80f2384", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_committest_commits_dabf0e89fe7107d6e294a924561533ecf80f2384-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"6ea0a1de87eb2456ac1d04542fb8c991256a409b20e279ad0167e2d6136b1acd\"", + "Last-Modified": "Fri, 23 Jun 2023 09:52:45 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4709", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "291", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "6C08:AE59:7FC1753:80FE2C3:6495A204" + } + }, + "uuid": "36e33c12-afd0-490c-afd7-a2bbf73e5f2c", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/user-1.json b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/user-1.json new file mode 100644 index 0000000000..32661b7fc8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/CommitTest/wiremock/listFilesWhereCommitHasSmallChange/mappings/user-1.json @@ -0,0 +1,49 @@ +{ + "id": "066bfcff-4793-451d-9a78-96bb989d8e60", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Fri, 23 Jun 2023 13:45:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"b142ca081f3c3ae38c3b38386b1f54994546feb4c284595350117b14b741cd37\"", + "Last-Modified": "Mon, 19 Jun 2023 12:28:16 GMT", + "github-authentication-token-expiration": "2023-07-19 10:23:39 +0100", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1687528241", + "X-RateLimit-Used": "287", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CBB8:7BC7:126B317:1292171:6495A203" + } + }, + "uuid": "066bfcff-4793-451d-9a78-96bb989d8e60", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json new file mode 100644 index 0000000000..200d5ef050 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json @@ -0,0 +1,46 @@ +{ + "id": 330788, + "slug": "ghapi-test-app-5", + "node_id": "A_kwHOAHMfo84ABQwk", + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "GHApi Test app 5", + "description": null, + "external_url": "https://www.example.com", + "html_url": "https://github.com/apps/ghapi-test-app-5", + "created_at": "2023-05-08T09:22:36Z", + "updated_at": "2023-05-08T09:22:36Z", + "client_id": "Iv1.1c63d0b87c03d42e", + "webhook_secret": "f4dafa9b05d8248d81f65f0e6cb108cb8bb76a0c", + "pem": "-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEA4UT2qvDbMK3hQtvrK7wu7y7B6hypYhsXyD6GN22Bcn3JZdSI\nWm/zhRMH/vKwU5r67YKcJCchHVbvLRWNt911r85D0uLMPIjOkdL+cnSOa5yRhTJy\nI/RhZqx8yoXHSSE5ToKwfPAn3hiv8N2gQEsEpWxdycqPOg7paFsAJ5hjstmS09uU\nKwrFcCQdWuidRnwn6bdgGt+bL9dsvRd4RDoP5sZj5pLNo1y8N9DnFvHihd1rQxQS\nIf9sRgGPDLasNkLvMdxKnsDTsufRBmmw72iaTJXc+EVZw2jYKrOjRVechTMEfbRp\nQRVZw9vysT2XhDB9J4bbJ6NopP/c7JC1ihUJfQIDAQABAoIBAQC0DwubVyncnx+O\n8XnoW2KojBczqfU6Fa3MwS1G4KC3gxOX8WmL4DAmDjA1+IY4TYiEkAF+ZEhzyyki\nQDgm3z1SaOyNg/r75941cRExKzkritpGPSw+0PeJuhWFS6kfKw9DUfL/6nXzcIgx\nXvTYbx4nm5bb1KznG0Q1xYc6HvSR3xb3DcXWXkRX6sMEX4J3M/x0PWxPWnDGvlBJ\nQyDgfqpOa6kra5uSm8qoHtb7httwE/a5NZ9P5jeLk3wXaQmCEl4RDEgSGeR4AOf5\nXVTWP936sVA3vBLd6LmddO3ZEE1HZhlb2XWnxCnGSKL4LoFZE7Jhf2Alp32nm0gm\nwsrQoVgBAoGBAPjxzs3Umlle0EZbfJa8c4rFPOJmMkL07aQu8PAAHiNGcbzzfUmK\n7kfNYXktHKB6pjyjkXEQrLCm9wdqCqI70wJ+AVn6E/0Z1ojPALIxdrjQuNS9xjRo\nCUAQqEXe+IWBZVArgy7t3to7XkAHrj+ky96eAhlsb88c9qiWtS7biXPtAoGBAOen\nYgTe8SbWdBRh7mqDgx9eruB6UCOt8BUlb1uFyt1kpCLZVelw1JYs7hq+roTdKds0\ny9pu+E6I7+g6LsVtjkMqf/VXuY0qomf9hbNE9Yj/Tqty5B4xU+gj01MCm5RRln9M\nKGKCeJAPDB5AEmyidPvLbPp5U6Rniu0Ds+AJ0FnRAoGBAMro/bGTuwNhXs4aP+D1\nVhAkWE4JEqq0zQZoJIba8bW683YZ2WMaVMI9y1djx9OeZOVERYYtGzUZwnxOmMBH\nluSPJDbcuXIxn0X/xAd6fdSCfEUbMfUBX5jSevYImfTn1VaVQOX9iQnEHjx+hi7l\n+i5ICFoEotXkO8CKpr+8vbq5AoGAOCfkZAfjb6XHB/XhhOKSk7UxMWuVJ8EPlSC5\nCPe7AMZX37bN08QtVKZZphQZXE38yo3W6QHDoc4iUipgki2HshKIaGI2sdjm+8yC\nb73Ew8wYNwmn8QXGMF0W6mWUb3UDxaIhnBfCwDFVn7Oqg7kyIKPkrCdjNlR/Ygtm\nvGXEozECgYAFpzntJpUdYN4OxutpNXdnTgN0CJ3TECkk/+0xbTHoWNuMpJ5dR/yQ\n7RLxwcu8CqizXCB750jSgHlWk5GF1yAQzFO9ozjx/mxdPp1PxHaeN/5kmx8VjT8W\nL7zhUMfZLeDMpIbQ/3gyq0EUxxHIEJc2Mx42C9/OY/fkEuZPFSEL2A==\n-----END RSA PRIVATE KEY-----\n", + "client_secret": "f4b60603e85b3965492b393bca0809a914dcdf18", + "permissions": { + "issues": "write", + "checks": "write", + "metadata": "read" + }, + "events": [ + "issues", + "issue_comment", + "check_suite", + "check_run" + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/user-1.json new file mode 100644 index 0000000000..53b8e52926 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false, + "name": "Daniel Baur", + "company": null, + "blog": "", + "location": "Ulm", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 48, + "public_gists": 0, + "followers": 7, + "following": 10, + "created_at": "2014-04-10T14:14:43Z", + "updated_at": "2023-04-28T11:26:17Z", + "private_gists": 3, + "total_private_repos": 13, + "owned_private_repos": 13, + "disk_usage": 104958, + "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/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json new file mode 100644 index 0000000000..73a2eb2ae6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json @@ -0,0 +1,57 @@ +{ + "id": "14af1029-56b1-4d4b-9579-c2a30a4df4c4", + "name": "app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions", + "request": { + "url": "/app-manifests/46fbe5453b245dee21b96753f80eace209a3cf01/conversions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "app-manifests_46fbe5453b245dee21b96753f80eace209a3cf01_conversions-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 08 May 2023 09:22:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"11658fb48526e56c552184ab239fde425aef041a1d48fce2333682009b178a2c\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-07 08:27:57 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1683541357", + "X-RateLimit-Used": "1", + "X-RateLimit-Resource": "integration_manifest", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC01:67BE:362DA52:36DD95C:6458BF5C" + } + }, + "uuid": "14af1029-56b1-4d4b-9579-c2a30a4df4c4", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/user-1.json new file mode 100644 index 0000000000..cdcebab26b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/createAppByManifestFlowTest/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "e173459b-205e-447b-9c70-70bddd564b12", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 08 May 2023 09:22:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ed2b1866194223c334b01088179c15c223bc73dc80a5611a2dd5df357b0f0b30\"", + "Last-Modified": "Fri, 28 Apr 2023 11:26:17 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-07 08:27:57 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1683538171", + "X-RateLimit-Used": "40", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D3E6:CDC9:7C734B0:7DDAE36:6458BF5B" + } + }, + "uuid": "e173459b-205e-447b-9c70-70bddd564b12", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/apps_ghapi-test-app-4-2.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/apps_ghapi-test-app-4-2.json new file mode 100644 index 0000000000..8e60ce50ac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/apps_ghapi-test-app-4-2.json @@ -0,0 +1,33 @@ +{ + "id": 330762, + "slug": "ghapi-test-app-4", + "node_id": "A_kwHOAHMfo84ABQwK", + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "GHApi Test app 4", + "description": "An app to test the GitHub getApp(slug) method.", + "external_url": "https://github.com/organizations/hub4j-test-org", + "html_url": "https://github.com/apps/ghapi-test-app-4", + "created_at": "2023-05-08T08:32:35Z", + "updated_at": "2023-05-08T08:32:35Z", + "permissions": {}, + "events": [] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/user-1.json new file mode 100644 index 0000000000..53b8e52926 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false, + "name": "Daniel Baur", + "company": null, + "blog": "", + "location": "Ulm", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 48, + "public_gists": 0, + "followers": 7, + "following": 10, + "created_at": "2014-04-10T14:14:43Z", + "updated_at": "2023-04-28T11:26:17Z", + "private_gists": 3, + "total_private_repos": 13, + "owned_private_repos": 13, + "disk_usage": 104958, + "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/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/apps_ghapi-test-app-4-2.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/apps_ghapi-test-app-4-2.json new file mode 100644 index 0000000000..f13b1de6c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/apps_ghapi-test-app-4-2.json @@ -0,0 +1,50 @@ +{ + "id": "ec4e2dee-efbc-4422-bccf-93b9c74601da", + "name": "apps_ghapi-test-app-4", + "request": { + "url": "/apps/ghapi-test-app-4", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "apps_ghapi-test-app-4-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 08 May 2023 09:02:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"cce36a75318a31dbe0f95039e6b4063a2c1f69854549ec4ce872f5035e7091c7\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-07 08:27:57 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1683538171", + "X-RateLimit-Used": "39", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "9FE0:F781:330A702:33B805E:6458BAA1" + } + }, + "uuid": "ec4e2dee-efbc-4422-bccf-93b9c74601da", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/user-1.json new file mode 100644 index 0000000000..fe28b666ab --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppExtendedTest/wiremock/getAppBySlugTest/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "c58c0624-10ba-438b-a3bc-6f02d11aa7ac", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 08 May 2023 09:02:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ed2b1866194223c334b01088179c15c223bc73dc80a5611a2dd5df357b0f0b30\"", + "Last-Modified": "Fri, 28 Apr 2023 11:26:17 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-07 08:27:57 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1683538171", + "X-RateLimit-Used": "37", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BFEE:A6A8:81BA8C1:831FD5D:6458BAA0" + } + }, + "uuid": "c58c0624-10ba-438b-a3bc-6f02d11aa7ac", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app-1.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app-1.json new file mode 100644 index 0000000000..89a67cab2d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app-1.json @@ -0,0 +1,42 @@ +{ + "id": 83009, + "slug": "cleanthat", + "node_id": "MDM6QXBwNjU1NTA=", + "owner": { + "login": "solven-eu", + "id": 34552197, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NTUyMTk3", + "avatar_url": "https://avatars.githubusercontent.com/u/34552197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/solven-eu", + "html_url": "https://github.com/solven-eu", + "followers_url": "https://api.github.com/users/solven-eu/followers", + "following_url": "https://api.github.com/users/solven-eu/following{/other_user}", + "gists_url": "https://api.github.com/users/solven-eu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/solven-eu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/solven-eu/subscriptions", + "organizations_url": "https://api.github.com/users/solven-eu/orgs", + "repos_url": "https://api.github.com/users/solven-eu/repos", + "events_url": "https://api.github.com/users/solven-eu/events{/privacy}", + "received_events_url": "https://api.github.com/users/solven-eu/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "CleanThat", + "description": "Cleanthat cleans branches automatically to fix/improve your code.\r\n\r\nFeatures :\r\n- Fix branches a pull_requests head\r\n- Open pull_request to fix protected branches\r\n- Format `.md`, `.java`, `.scala`, `.json`, `.yaml` with the help of [Spotless](https://github.com/diffplug/spotless)\r\n- Refactor `.java` files to improve code-style, security and stability", + "external_url": "https://github.com/solven-eu/cleanthat", + "html_url": "https://github.com/apps/cleanthat", + "created_at": "2020-05-19T13:45:43Z", + "updated_at": "2023-01-27T06:10:21Z", + "permissions": { + "checks": "write", + "contents": "write", + "metadata": "read", + "pull_requests": "write" + }, + "events": [ + "pull_request", + "push" + ], + "installations_count": 280 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app_installations-2.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app_installations-2.json new file mode 100644 index 0000000000..a0721a8cab --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/app_installations-2.json @@ -0,0 +1,42 @@ +[ + { + "id": 12131496, + "account": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "repository_selection": "selected", + "access_tokens_url": "https://api.github.com/app/installations/12131496/access_tokens", + "repositories_url": "https://api.github.com/installation/repositories", + "html_url": "https://github.com/organizations/hub4j-test-org/settings/installations/12131496", + "app_id": 83009, + "app_slug": "ghapi-test-app-2", + "target_id": 7544739, + "target_type": "Organization", + "permissions": {}, + "events": [], + "created_at": "2020-09-30T15:05:32.000Z", + "updated_at": "2020-09-30T15:05:32.000Z", + "single_file_name": null, + "has_multiple_single_files": false, + "single_file_paths": [], + "suspended_by": null, + "suspended_at": null + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/marketplace_listing_accounts_7544739-3.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/marketplace_listing_accounts_7544739-3.json new file mode 100644 index 0000000000..e933eaa81b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/__files/marketplace_listing_accounts_7544739-3.json @@ -0,0 +1,36 @@ +{ + "url": "https://api.github.com/orgs/solven-eu", + "type": "Organization", + "id": 7544739, + "login": "solven-eu", + "marketplace_pending_change": null, + "marketplace_purchase": { + "billing_cycle": "monthly", + "unit_count": 1, + "on_free_trial": false, + "free_trial_ends_on": null, + "is_installed": true, + "updated_at": "2023-03-02T06:05:31Z", + "next_billing_date": "2023-03-28T00:00:00Z", + "plan": { + "url": "https://api.github.com/marketplace_listing/plans/8366", + "accounts_url": "https://api.github.com/marketplace_listing/plans/8366/accounts", + "id": 8366, + "number": 8, + "name": "Organization Private Repositories", + "description": "Enable CleanThat for any of your organization repositories", + "monthly_price_in_cents": 5000, + "yearly_price_in_cents": 50000, + "price_model": "FLAT_RATE", + "has_free_trial": false, + "unit_name": null, + "state": "published", + "bullets": [ + "Branches are automatically cleaned", + "Main branchrs are cleaned through PullRequests", + "Java, Kotlin, Json, Yaml, Markdown, etc" + ] + } + }, + "organization_billing_email": "accounting@toto.com" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app-1.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app-1.json new file mode 100644 index 0000000000..fbd7bbd39f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app-1.json @@ -0,0 +1,42 @@ +{ + "id": "144fdb7f-667e-4cf4-bd37-67ed11bdc421", + "name": "app", + "request": { + "url": "/app", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "app-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sun, 19 Mar 2023 13:02:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"00fa67d861eb73a934cd9229b76c2dc7c2c235babf8d281e2dd4a1e31ca3b930\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C09A:5A83:172C70C:179D1FD:641707FA" + } + }, + "uuid": "144fdb7f-667e-4cf4-bd37-67ed11bdc421", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations-2.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations-2.json new file mode 100644 index 0000000000..fd83a4890d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations-2.json @@ -0,0 +1,41 @@ +{ + "id": "45ac2593-8123-49ae-ad1a-ded446491b14", + "name": "app_installations", + "request": { + "url": "/app/installations", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "app_installations-2.json", + "headers": { + "Date": "Thu, 05 Nov 2020 20:42:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With", + "Accept-Encoding" + ], + "ETag": "W/\"60d3ec5c9014799f5e12b88e16e771a386b905ad8d41cd18aed34e58b11c58d4\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "9294:AE05:BDAC831:DB35870:5FA463B7" + } + }, + "uuid": "45ac2593-8123-49ae-ad1a-ded446491b14", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations_12131496_access_tokens-3.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations_12131496_access_tokens-3.json new file mode 100644 index 0000000000..8a2d294367 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/app_installations_12131496_access_tokens-3.json @@ -0,0 +1,48 @@ +{ + "id": "b8c586bc-0b07-47e8-806a-76e39d058bf5", + "name": "app_installations_12131496_access_tokens", + "request": { + "url": "/app/installations/12131496/access_tokens", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.machine-man-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "body": "{\"token\":\"v1.d5741167e3837f3adda54581ba91c37183c7dd94\",\"expires_at\":\"2020-11-05T21:42:32Z\",\"permissions\":{},\"repository_selection\":\"selected\"}", + "headers": { + "Date": "Thu, 05 Nov 2020 20:42:32 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, Accept, X-Requested-With", + "Accept-Encoding" + ], + "ETag": "\"1fef2b60c4475562d6b9ad2dbc3631503de22b38aac485c1d3f72aa6c8fed608\"", + "X-GitHub-Media-Type": "github.v3; param=machine-man-preview; format=json", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "9294:AE05:BDAC89E:DB35960:5FA463B7" + } + }, + "uuid": "b8c586bc-0b07-47e8-806a-76e39d058bf5", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/marketplace_listing_accounts_7544739-3.json b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/marketplace_listing_accounts_7544739-3.json new file mode 100644 index 0000000000..f0eff5801a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHAppInstallationTest/wiremock/testGetMarketplaceAccount/mappings/marketplace_listing_accounts_7544739-3.json @@ -0,0 +1,47 @@ +{ + "id": "eae10c4e-7d76-4db7-a741-f0d2520c396d", + "name": "marketplace_listing_accounts_7544739", + "request": { + "url": "/marketplace_listing/accounts/7544739", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "marketplace_listing_accounts_7544739-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sun, 19 Mar 2023 13:02:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"643755aa11e09fed050b7067db25efbebfe738f9fff6104c15a75fb3754632d4\"", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1679232791", + "X-RateLimit-Used": "68", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C09D:5A83:172CCBB:179D7CE:641707FC" + } + }, + "uuid": "eae10c4e-7d76-4db7-a741-f0d2520c396d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/orgs_hub4j-test-org-1.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/orgs_hub4j-test-org-1.json new file mode 100644 index 0000000000..3fee6b6ffd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/orgs_hub4j-test-org-1.json @@ -0,0 +1,31 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "description": "Hub4j Test Org Description (this could be null or blank too)", + "name": "Hub4j Test Org Name (this could be null or blank too)", + "company": null, + "blog": "https://hub4j.url.io/could/be/null", + "location": "Hub4j Test Org Location (this could be null or blank too)", + "email": "hub4jtestorgemail@could.be.null.com", + "twitter_username": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 54, + "public_gists": 0, + "followers": 1, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2020-06-04T05:56:10Z", + "type": "Organization" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api-2.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api-2.json new file mode 100644 index 0000000000..bf61dfac64 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api-2.json @@ -0,0 +1,357 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2023-01-31T10:03:44Z", + "pushed_at": "2023-02-01T12:37:22Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 18977, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": 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" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 7, + "watchers": 1, + "default_branch": "main", + "temp_clone_token": null, + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2023-01-30T18:28:31Z", + "pushed_at": "2023-02-01T11:03:02Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 40829, + "stargazers_count": 972, + "watchers_count": 972, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 651, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 139, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "api", + "client-library", + "github", + "github-api", + "github-api-v3", + "java", + "java-api" + ], + "visibility": "public", + "forks": 651, + "open_issues": 139, + "watchers": 972, + "default_branch": "main" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2023-01-30T18:28:31Z", + "pushed_at": "2023-02-01T11:03:02Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "https://github-api.kohsuke.org/", + "size": 40829, + "stargazers_count": 972, + "watchers_count": 972, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 651, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 139, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "api", + "client-library", + "github", + "github-api", + "github-api-v3", + "java", + "java-api" + ], + "visibility": "public", + "forks": 651, + "open_issues": 139, + "watchers": 972, + "default_branch": "main" + }, + "network_count": 651, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api_codeowners_errors-3.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api_codeowners_errors-3.json new file mode 100644 index 0000000000..243321999f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/__files/repos_hub4j-test-org_github-api_codeowners_errors-3.json @@ -0,0 +1,13 @@ +{ + "errors": [ + { + "line": 1, + "column": 3, + "source": "* @nonexistent-user # Deliberate error to test response to repo.listCodeownersErrors()\n", + "kind": "Unknown owner", + "suggestion": "make sure @nonexistent-user exists and has write access to the repository", + "message": "Unknown owner on line 1: make sure @nonexistent-user exists and has write access to the repository\n\n * @nonexistent-user # Deliberate error to test response to repo.listCodeownersErrors()\n ^", + "path": ".github/CODEOWNERS" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/orgs_hub4j-test-org-1.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/orgs_hub4j-test-org-1.json new file mode 100644 index 0000000000..d29d4588d3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/orgs_hub4j-test-org-1.json @@ -0,0 +1,46 @@ +{ + "id": "fed03a9c-634b-4e3c-8423-11e978fcc80d", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 01 Feb 2023 13:13:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": "Accept, Accept-Encoding, Accept, X-Requested-With", + "ETag": "W/\"019b7739e9fbcde09b75c43c41ed21dbb8be92b33062c8544e40549543f07fc9\"", + "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "12", + "X-RateLimit-Reset": "1675258706", + "X-RateLimit-Resource": "core", + "X-RateLimit-Used": "48", + "Accept-Ranges": "bytes", + "X-GitHub-Request-Id": "B77E:E756:54773C6:55FA2D7:63DA657C" + } + }, + "uuid": "fed03a9c-634b-4e3c-8423-11e978fcc80d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api-2.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api-2.json new file mode 100644 index 0000000000..f47d8f16e2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api-2.json @@ -0,0 +1,46 @@ +{ + "id": "83ae59b2-2fee-4b87-b9c5-d4c9df208df2", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 01 Feb 2023 13:13:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": "Accept, Accept-Encoding, Accept, X-Requested-With", + "ETag": "W/\"764f0069b95f6b8021183ff5da0ff253c0aa150492ab6776e0bbbb19df38fd31\"", + "Last-Modified": "Tue, 31 Jan 2023 10:03:44 GMT", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "11", + "X-RateLimit-Reset": "1675258706", + "X-RateLimit-Resource": "core", + "X-RateLimit-Used": "49", + "Accept-Ranges": "bytes", + "X-GitHub-Request-Id": "B77E:E756:54775D8:55FA4F1:63DA657D" + } + }, + "uuid": "83ae59b2-2fee-4b87-b9c5-d4c9df208df2", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api_codeowners_errors-3.json b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api_codeowners_errors-3.json new file mode 100644 index 0000000000..d11d713046 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHCodeownersErrorTest/wiremock/testGetCodeownersErrors/mappings/repos_hub4j-test-org_github-api_codeowners_errors-3.json @@ -0,0 +1,45 @@ +{ + "id": "fa38407c-47c9-4eb9-88c1-fe025c83c5f7", + "name": "repos_hub4j-test-org_github-api_codeowners_errors", + "request": { + "url": "/repos/hub4j-test-org/github-api/codeowners/errors", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api_codeowners_errors-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 01 Feb 2023 13:13:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": "Accept, Accept-Encoding, Accept, X-Requested-With", + "ETag": "W/\"2429b2e50fda38535f58bfed72e523831eedca6b313cb9c6b660306c7d8e0452\"", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "10", + "X-RateLimit-Reset": "1675258706", + "X-RateLimit-Resource": "core", + "X-RateLimit-Used": "50", + "Accept-Ranges": "bytes", + "X-GitHub-Request-Id": "B77E:E756:54777B2:55FA6C7:63DA657D" + } + }, + "uuid": "fa38407c-47c9-4eb9-88c1-fe025c83c5f7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest-2.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest-2.json new file mode 100644 index 0000000000..cb09c0dd19 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest-2.json @@ -0,0 +1,149 @@ +{ + "id": 593636170, + "node_id": "R_kgDOI2IrSg", + "name": "GHDeployKeyTest", + "full_name": "hub4j-test-org/GHDeployKeyTest", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/GHDeployKeyTest", + "description": "Repository used by GHDeployKeyTest", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest", + "forks_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/deployments", + "created_at": "2023-01-26T13:58:23Z", + "updated_at": "2023-01-26T13:58:23Z", + "pushed_at": "2023-01-26T13:58:25Z", + "git_url": "git://github.com/hub4j-test-org/GHDeployKeyTest.git", + "ssh_url": "git@github.com:hub4j-test-org/GHDeployKeyTest.git", + "clone_url": "https://github.com/hub4j-test-org/GHDeployKeyTest.git", + "svn_url": "https://github.com/hub4j-test-org/GHDeployKeyTest", + "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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest_keys-3.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest_keys-3.json new file mode 100644 index 0000000000..95120e92c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/repos_hub4j-test-org_ghdeploykeytest_keys-3.json @@ -0,0 +1,24 @@ +[ + { + "id": 76924278, + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDBO4AyE/CjnMt0YeJ4QFnU87qr4u534Q5FHRZmTUP7Ixi/ks6iMVJAU71GltuP1NIUynOTTA+Y+XNHfCp+/wNCi6B6o63Ouk2Debx7cf3ufFXM7G48iTG3ULK2qfPzm8OkfRP4urg+AmdrQAUuH3Wx3CinqlGt8phJECsRkQqdoYoikOrRtx9iNx0Cz45xD4JyRBOjZix0kZTqQy8LKnpxXA8nIzJJoh9eYTOPT3Pf3X3qeOUpN2QTSH7ya9xvE+lCxEMqP6m/vnA1tm5Vzso53bU/pG/SZwNESpafD9Dkry8AiCg9zfzFnzikwWHhrPRqCjIwYuMdaXbBtQBknPx62nDkpS/b0iFvdIoRmWTNbTng38urH5lFRLE7y13WW1GWYPeiSF3zY6B0B+rdNJm2RNrZtvtbQ0e3ruWVR8ZIVtQysT0/ueGO0g2pmodY0lB2Z6EidOx4F46i8mitUgABwhnlrzfki/nO/K0voIUh48D5M8tJsR7kCj+G0e1zXoTl7OF7/g8br8zYlSDczIZBgjORT+XBOr5My6cbSFYRratR2cy1ZB7XpcolCp89mPY3MTQOTOrNIE4BhoJHS6ws7rIv/ZNQeW+4lktPq0x59Tdcv5vgYAdAiu3qpjTcaVxxkAVE8AxNz237+CRs4+jWCsGHl2BAHCEtM9KVqLR77w==", + "url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/keys/76924278", + "title": "Deploykey - rsa4096 - readwrite", + "verified": true, + "created_at": "2023-01-26T14:12:12Z", + "read_only": false, + "last_used": null, + "added_by": "van-vliet" + }, + { + "id": 77542797, + "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIINaSsehgTpibnTTtH4kKohPhwfzqo0OvfwP4w8qZfPp", + "url": "https://api.github.com/repos/hub4j-test-org/GHDeployKeyTest/keys/77542797", + "title": "DeployKey - ed25519 - readonly", + "verified": true, + "created_at": "2023-02-08T10:00:15Z", + "read_only": true, + "last_used": "2023-02-08T10:02:11Z", + "added_by": "van-vliet" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/user-1.json new file mode 100644 index 0000000000..c47cc37804 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "van-vliet", + "id": 11989400, + "node_id": "MDQ6VXNlcjExOTg5NDAw", + "avatar_url": "https://avatars.githubusercontent.com/u/11989400?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/van-vliet", + "html_url": "https://github.com/van-vliet", + "followers_url": "https://api.github.com/users/van-vliet/followers", + "following_url": "https://api.github.com/users/van-vliet/following{/other_user}", + "gists_url": "https://api.github.com/users/van-vliet/gists{/gist_id}", + "starred_url": "https://api.github.com/users/van-vliet/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/van-vliet/subscriptions", + "organizations_url": "https://api.github.com/users/van-vliet/orgs", + "repos_url": "https://api.github.com/users/van-vliet/repos", + "events_url": "https://api.github.com/users/van-vliet/events{/privacy}", + "received_events_url": "https://api.github.com/users/van-vliet/received_events", + "type": "User", + "site_admin": false, + "name": "Jonas van Vliet", + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 1, + "public_gists": 0, + "followers": 1, + "following": 1, + "created_at": "2015-04-17T05:56:56Z", + "updated_at": "2022-11-04T06:44:42Z", + "private_gists": 0, + "total_private_repos": 0, + "owned_private_repos": 0, + "disk_usage": 0, + "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/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest-2.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest-2.json new file mode 100644 index 0000000000..a3a920349a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest-2.json @@ -0,0 +1,51 @@ +{ + "id": "86196b46-7963-4ade-8331-f6b8677ebb56", + "name": "repos_hub4j-test-org_ghdeploykeytest", + "request": { + "url": "/repos/hub4j-test-org/GHDeployKeyTest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghdeploykeytest-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Feb 2023 10:16:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ccb5e13d45de3c0541c6be0f53bb4bffb08cf1dcb916a2eeb417a2d162181d25\"", + "Last-Modified": "Thu, 26 Jan 2023 13:58:23 GMT", + "X-OAuth-Scopes": "read:user, repo", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-02-15 10:03:43 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1675854466", + "X-RateLimit-Used": "17", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E1B8:4352:46E1A3:481D53:63E37666" + } + }, + "uuid": "86196b46-7963-4ade-8331-f6b8677ebb56", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest_keys-3.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest_keys-3.json new file mode 100644 index 0000000000..6854466d66 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/repos_hub4j-test-org_ghdeploykeytest_keys-3.json @@ -0,0 +1,50 @@ +{ + "id": "49bb1666-7758-49de-9134-f0735a9a235d", + "name": "repos_hub4j-test-org_ghdeploykeytest_keys", + "request": { + "url": "/repos/hub4j-test-org/GHDeployKeyTest/keys", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghdeploykeytest_keys-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Feb 2023 10:16:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"9bc942dbeacfdba2d3174c5da85d7e37a3d600068bea67c0e8e789201c7a9c90\"", + "X-OAuth-Scopes": "read:user, repo", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-02-15 10:03:43 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1675854466", + "X-RateLimit-Used": "18", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E1B9:672E:49A60B:4AE64E:63E37667" + } + }, + "uuid": "49bb1666-7758-49de-9134-f0735a9a235d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/user-1.json new file mode 100644 index 0000000000..fb3aea41e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHDeployKeyTest/wiremock/testGetDeployKeys/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "ffe193ff-1772-4bdb-a87d-f09d73a55e9c", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Wed, 08 Feb 2023 10:16:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d886bab2c0d06ed3ad08a6e1296c04c22f9a975d735ded6a05ba24cf69cee315\"", + "Last-Modified": "Fri, 04 Nov 2022 06:44:42 GMT", + "X-OAuth-Scopes": "read:user, repo", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-02-15 10:03:43 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1675854466", + "X-RateLimit-Used": "15", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E1B6:4092:490FCD:4A4F75:63E37665" + } + }, + "uuid": "ffe193ff-1772-4bdb-a87d-f09d73a55e9c", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/workflow_run.json b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/workflow_run.json index 2aecb178c3..ee19155035 100644 --- a/src/test/resources/org/kohsuke/github/GHEventPayloadTest/workflow_run.json +++ b/src/test/resources/org/kohsuke/github/GHEventPayloadTest/workflow_run.json @@ -6,6 +6,7 @@ "node_id": "MDExOldvcmtmbG93UnVuNjgwNjA0NzQ1", "head_branch": "main", "head_sha": "dbea8d8b6ed2cf764dfd84a215f3f9040b3d4423", + "display_title": "its-display-title", "run_number": 6, "event": "workflow_dispatch", "status": "completed", diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-7-accounts-QgHUA.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-7-accounts-QgHUA.json index a4601c5f5a..d4e5ff9ca9 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-7-accounts-QgHUA.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-7-accounts-QgHUA.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-C43G2.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-C43G2.json index 61647508a2..453cf942e5 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-C43G2.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccounts/__files/body-marketplace_listing-stubbed-plans-C43G2.json @@ -8,7 +8,7 @@ "description": "A free CI solution", "monthly_price_in_cents": 0, "yearly_price_in_cents": 0, - "price_model": "free", + "price_model": "FREE", "has_free_trial": false, "state": "published", "unit_name": null, @@ -27,7 +27,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -45,7 +45,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-aoRnP.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-aoRnP.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-aoRnP.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-aoRnP.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-NZw9v.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-NZw9v.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-NZw9v.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-NZw9v.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-b1MbT.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-b1MbT.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-b1MbT.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-b1MbT.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-uewkE.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-uewkE.json index 61647508a2..453cf942e5 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-uewkE.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithDirection/__files/body-marketplace_listing-stubbed-plans-uewkE.json @@ -8,7 +8,7 @@ "description": "A free CI solution", "monthly_price_in_cents": 0, "yearly_price_in_cents": 0, - "price_model": "free", + "price_model": "FREE", "has_free_trial": false, "state": "published", "unit_name": null, @@ -27,7 +27,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -45,7 +45,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-cz27N.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-cz27N.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-cz27N.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-7-accounts-cz27N.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-8T1Pb.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-8T1Pb.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-8T1Pb.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-8-accounts-8T1Pb.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-VT77w.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-VT77w.json index 09a8423762..9892541eac 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-VT77w.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-9-accounts-VT77w.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -53,7 +53,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -80,7 +80,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-xk1MF.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-xk1MF.json index 61647508a2..453cf942e5 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-xk1MF.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listAccountsWithSortAndDirection/__files/body-marketplace_listing-stubbed-plans-xk1MF.json @@ -8,7 +8,7 @@ "description": "A free CI solution", "monthly_price_in_cents": 0, "yearly_price_in_cents": 0, - "price_model": "free", + "price_model": "FREE", "has_free_trial": false, "state": "published", "unit_name": null, @@ -27,7 +27,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -45,7 +45,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listMarketplacePlans/__files/body-marketplace_listing-stubbed-plans-ZDjdu.json b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listMarketplacePlans/__files/body-marketplace_listing-stubbed-plans-ZDjdu.json index 61647508a2..453cf942e5 100644 --- a/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listMarketplacePlans/__files/body-marketplace_listing-stubbed-plans-ZDjdu.json +++ b/src/test/resources/org/kohsuke/github/GHMarketplacePlanTest/wiremock/listMarketplacePlans/__files/body-marketplace_listing-stubbed-plans-ZDjdu.json @@ -8,7 +8,7 @@ "description": "A free CI solution", "monthly_price_in_cents": 0, "yearly_price_in_cents": 0, - "price_model": "free", + "price_model": "FREE", "has_free_trial": false, "state": "published", "unit_name": null, @@ -27,7 +27,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "per-unit", + "price_model": "PER_UNIT", "state": "published", "unit_name": "seat", "bullets": [ @@ -45,7 +45,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ diff --git a/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user-1.json new file mode 100644 index 0000000000..3e646ff910 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "jvv-test-2", + "id": 123935167, + "node_id": "U_kgDOB2MZvw", + "avatar_url": "https://avatars.githubusercontent.com/u/123935167?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jvv-test-2", + "html_url": "https://github.com/jvv-test-2", + "followers_url": "https://api.github.com/users/jvv-test-2/followers", + "following_url": "https://api.github.com/users/jvv-test-2/following{/other_user}", + "gists_url": "https://api.github.com/users/jvv-test-2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jvv-test-2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jvv-test-2/subscriptions", + "organizations_url": "https://api.github.com/users/jvv-test-2/orgs", + "repos_url": "https://api.github.com/users/jvv-test-2/repos", + "events_url": "https://api.github.com/users/jvv-test-2/events{/privacy}", + "received_events_url": "https://api.github.com/users/jvv-test-2/received_events", + "type": "User", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 0, + "public_gists": 0, + "followers": 0, + "following": 0, + "created_at": "2023-01-30T08:21:43Z", + "updated_at": "2023-01-30T08:21:43Z", + "private_gists": 0, + "total_private_repos": 0, + "owned_private_repos": 0, + "disk_usage": 0, + "collaborators": 0, + "two_factor_authentication": false, + "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/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user_keys-2.json b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user_keys-2.json new file mode 100644 index 0000000000..e9656f3793 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/__files/user_keys-2.json @@ -0,0 +1,9 @@ +{ + "id": 77080429, + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDepW2/BSVFM2AfuGGsvi+vjQzC0EBD3R+/7PNEvP0/nvTWxiC/tthfvvCJR6TKrsprCir5tiJFm73gX+K18W0RKYpkyg8H6d1eZu3q/JOiGvoDPeN8Oe9hOGeeexw1WOiz7ESPHzZYXI981evzHAzxxn8zibr2EryopVNsXyoenw==", + "url": "https://api.github.com/user/keys/77080429", + "title": "Temporary user key", + "verified": true, + "created_at": "2023-01-30T09:31:56Z", + "read_only": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-18.json b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user-1.json similarity index 53% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-18.json rename to src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user-1.json index 938dd53399..e79a4076e7 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-18.json +++ b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user-1.json @@ -1,8 +1,8 @@ { - "id": "ec9a9df9-8cbf-4211-b061-d3452cfd1454", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "67a88087-3119-4e65-8d1e-b642d1e59c4a", + "name": "user", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/user", "method": "GET", "headers": { "Accept": { @@ -12,24 +12,27 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments-18.json", + "bodyFileName": "user-1.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:18 GMT", + "Date": "Mon, 30 Jan 2023 09:31:55 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"edab203c9bce79c86872fcace8d269e5060b9c125aadfccefbe871e663b7c1c2\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"f9a4696e8778e5018e61274cef95759771cfa9dee3c39b931513a562cf779e80\"", + "Last-Modified": "Mon, 30 Jan 2023 08:21:43 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-03-01 08:23:08 UTC", "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4965", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "35", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1675074715", + "X-RateLimit-Used": "1", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -37,12 +40,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF4C:5188:EA0328:F0143F:625178D6" + "X-GitHub-Request-Id": "CAB6:8706:A7B3FF:AAB6FC:63D78E8B" } }, - "uuid": "ec9a9df9-8cbf-4211-b061-d3452cfd1454", + "uuid": "67a88087-3119-4e65-8d1e-b642d1e59c4a", "persistent": true, - "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments", - "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-5", - "insertionIndex": 18 + "insertionIndex": 1 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys-2.json b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys-2.json new file mode 100644 index 0000000000..4ef079a7f3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys-2.json @@ -0,0 +1,56 @@ +{ + "id": "2a67008e-cf5e-4b4c-894a-878f6c718a05", + "name": "user_keys", + "request": { + "url": "/user/keys", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"title\":\"Temporary user key\",\"key\":\"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDepW2/BSVFM2AfuGGsvi+vjQzC0EBD3R+/7PNEvP0/nvTWxiC/tthfvvCJR6TKrsprCir5tiJFm73gX+K18W0RKYpkyg8H6d1eZu3q/JOiGvoDPeN8Oe9hOGeeexw1WOiz7ESPHzZYXI981evzHAzxxn8zibr2EryopVNsXyoenw==\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "user_keys-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 30 Jan 2023 09:31:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"6510ce8437cc68cf299fe8f5209abc961b86e6b4d35dfa4ae626ce43b32b2580\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:public_key, write:public_key", + "github-authentication-token-expiration": "2023-03-01 08:23:08 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1675074715", + "X-RateLimit-Used": "3", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CAB8:5F74:B9E56B:BCE687:63D78E8B", + "Location": "https://api.github.com/user/keys/77080429" + } + }, + "uuid": "2a67008e-cf5e-4b4c-894a-878f6c718a05", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys_77080429-3.json b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys_77080429-3.json new file mode 100644 index 0000000000..2ea399ed41 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPublicKeyTest/wiremock/testAddPublicKey/mappings/user_keys_77080429-3.json @@ -0,0 +1,41 @@ +{ + "id": "d91a5200-ed4b-4145-be9f-fece79f6f92d", + "name": "user_keys_77080429", + "request": { + "url": "/user/keys/77080429", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 30 Jan 2023 09:31:56 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:public_key", + "github-authentication-token-expiration": "2023-03-01 08:23:08 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1675074715", + "X-RateLimit-Used": "4", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "CAB9:B29F:A4B977:A7B346:63D78E8C" + } + }, + "uuid": "d91a5200-ed4b-4145-be9f-fece79f6f92d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-2.json similarity index 94% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-1.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-2.json index 162ceb1c73..628aa16924 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-1.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/orgs_hub4j-test-org-2.json @@ -20,7 +20,7 @@ "is_verified": false, "has_organization_projects": true, "has_repository_projects": true, - "public_repos": 49, + "public_repos": 50, "public_gists": 0, "followers": 0, "following": 0, @@ -28,10 +28,10 @@ "created_at": "2014-05-10T19:39:11Z", "updated_at": "2020-06-04T05:56:10Z", "type": "Organization", - "total_private_repos": 3, - "owned_private_repos": 3, + "total_private_repos": 4, + "owned_private_repos": 4, "private_gists": 0, - "disk_usage": 11979, + "disk_usage": 11980, "collaborators": 0, "billing_email": "kk@kohsuke.org", "default_repository_permission": "none", @@ -49,7 +49,7 @@ "name": "free", "space": 976562499, "private_repos": 10000, - "filled_seats": 35, + "filled_seats": 38, "seats": 3 } } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-3.json similarity index 95% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-2.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-3.json index 7451fc9078..984cd328d8 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-2.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api-3.json @@ -65,16 +65,16 @@ "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", "created_at": "2019-09-06T23:26:04Z", - "updated_at": "2021-11-09T20:13:29Z", - "pushed_at": "2022-03-04T11:02:08Z", + "updated_at": "2022-05-23T14:23:52Z", + "pushed_at": "2022-06-19T20:04:07Z", "git_url": "git://github.com/hub4j-test-org/github-api.git", "ssh_url": "git@github.com:hub4j-test-org/github-api.git", "clone_url": "https://github.com/hub4j-test-org/github-api.git", "svn_url": "https://github.com/hub4j-test-org/github-api", "homepage": "http://github-api.kohsuke.org/", "size": 19045, - "stargazers_count": 0, - "watchers_count": 0, + "stargazers_count": 1, + "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, @@ -99,7 +99,7 @@ "visibility": "public", "forks": 0, "open_issues": 7, - "watchers": 0, + "watchers": 1, "default_branch": "main", "permissions": { "admin": true, @@ -115,6 +115,7 @@ "allow_auto_merge": false, "delete_branch_on_merge": false, "allow_update_branch": false, + "use_squash_pr_title_as_default": false, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -202,27 +203,27 @@ "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", "created_at": "2010-04-19T04:13:03Z", - "updated_at": "2022-04-05T15:53:55Z", - "pushed_at": "2022-04-09T10:25:56Z", + "updated_at": "2022-06-21T16:37:05Z", + "pushed_at": "2022-06-21T07:07:41Z", "git_url": "git://github.com/hub4j/github-api.git", "ssh_url": "git@github.com:hub4j/github-api.git", "clone_url": "https://github.com/hub4j/github-api.git", "svn_url": "https://github.com/hub4j/github-api", "homepage": "https://github-api.kohsuke.org/", - "size": 39875, - "stargazers_count": 878, - "watchers_count": 878, + "size": 40107, + "stargazers_count": 907, + "watchers_count": 907, "language": "Java", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": true, - "forks_count": 601, + "forks_count": 618, "mirror_url": null, "archived": false, "disabled": false, - "open_issues_count": 100, + "open_issues_count": 107, "license": { "key": "mit", "name": "MIT License", @@ -242,9 +243,9 @@ "java-api" ], "visibility": "public", - "forks": 601, - "open_issues": 100, - "watchers": 878, + "forks": 618, + "open_issues": 107, + "watchers": 907, "default_branch": "main" }, "source": { @@ -314,27 +315,27 @@ "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", "created_at": "2010-04-19T04:13:03Z", - "updated_at": "2022-04-05T15:53:55Z", - "pushed_at": "2022-04-09T10:25:56Z", + "updated_at": "2022-06-21T16:37:05Z", + "pushed_at": "2022-06-21T07:07:41Z", "git_url": "git://github.com/hub4j/github-api.git", "ssh_url": "git@github.com:hub4j/github-api.git", "clone_url": "https://github.com/hub4j/github-api.git", "svn_url": "https://github.com/hub4j/github-api", "homepage": "https://github-api.kohsuke.org/", - "size": 39875, - "stargazers_count": 878, - "watchers_count": 878, + "size": 40107, + "stargazers_count": 907, + "watchers_count": 907, "language": "Java", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": true, - "forks_count": 601, + "forks_count": 618, "mirror_url": null, "archived": false, "disabled": false, - "open_issues_count": 100, + "open_issues_count": 107, "license": { "key": "mit", "name": "MIT License", @@ -354,11 +355,11 @@ "java-api" ], "visibility": "public", - "forks": 601, - "open_issues": 100, - "watchers": 878, + "forks": 618, + "open_issues": 107, + "watchers": 907, "default_branch": "main" }, - "network_count": 601, + "network_count": 618, "subscribers_count": 1 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-4.json similarity index 91% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-3.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-4.json index c718c1e64d..16dfde43be 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-3.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls-4.json @@ -1,38 +1,38 @@ { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "id": 904870051, - "node_id": "PR_kwDODFTdCc417zij", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450", - "diff_url": "https://github.com/hub4j-test-org/github-api/pull/450.diff", - "patch_url": "https://github.com/hub4j-test-org/github-api/pull/450.patch", - "issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450", - "number": 450, + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "id": 973840601, + "node_id": "PR_kwDODFTdCc46C6DZ", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456", + "diff_url": "https://github.com/hub4j-test-org/github-api/pull/456.diff", + "patch_url": "https://github.com/hub4j-test-org/github-api/pull/456.patch", + "issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456", + "number": 456, "state": "open", "locked": false, "title": "pullRequestReviewComments", "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", "type": "User", "site_admin": false }, "body": "## test", - "created_at": "2022-04-09T12:15:11Z", - "updated_at": "2022-04-09T12:15:11Z", + "created_at": "2022-06-21T17:18:17Z", + "updated_at": "2022-06-21T17:18:17Z", "closed_at": null, "merged_at": null, "merge_commit_sha": null, @@ -43,10 +43,10 @@ "labels": [], "milestone": null, "draft": false, - "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/commits", - "review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/comments", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/commits", + "review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/comments", "review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450/comments", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456/comments", "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7", "head": { "label": "hub4j-test-org:test/stable", @@ -139,16 +139,16 @@ "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", "created_at": "2019-09-06T23:26:04Z", - "updated_at": "2021-11-09T20:13:29Z", - "pushed_at": "2022-03-04T11:02:08Z", + "updated_at": "2022-05-23T14:23:52Z", + "pushed_at": "2022-06-19T20:04:07Z", "git_url": "git://github.com/hub4j-test-org/github-api.git", "ssh_url": "git@github.com:hub4j-test-org/github-api.git", "clone_url": "https://github.com/hub4j-test-org/github-api.git", "svn_url": "https://github.com/hub4j-test-org/github-api", "homepage": "http://github-api.kohsuke.org/", "size": 19045, - "stargazers_count": 0, - "watchers_count": 0, + "stargazers_count": 1, + "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, @@ -173,7 +173,7 @@ "visibility": "public", "forks": 0, "open_issues": 8, - "watchers": 0, + "watchers": 1, "default_branch": "main" } }, @@ -268,16 +268,16 @@ "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", "created_at": "2019-09-06T23:26:04Z", - "updated_at": "2021-11-09T20:13:29Z", - "pushed_at": "2022-03-04T11:02:08Z", + "updated_at": "2022-05-23T14:23:52Z", + "pushed_at": "2022-06-19T20:04:07Z", "git_url": "git://github.com/hub4j-test-org/github-api.git", "ssh_url": "git@github.com:hub4j-test-org/github-api.git", "clone_url": "https://github.com/hub4j-test-org/github-api.git", "svn_url": "https://github.com/hub4j-test-org/github-api", "homepage": "http://github-api.kohsuke.org/", "size": 19045, - "stargazers_count": 0, - "watchers_count": 0, + "stargazers_count": 1, + "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, @@ -302,31 +302,31 @@ "visibility": "public", "forks": 0, "open_issues": 8, - "watchers": 0, + "watchers": 1, "default_branch": "main" } }, "_links": { "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" }, "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450" + "href": "https://github.com/hub4j-test-org/github-api/pull/456" }, "issue": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456" }, "comments": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450/comments" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456/comments" }, "review_comments": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/comments" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/comments" }, "review_comment": { "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}" }, "commits": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/commits" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/commits" }, "statuses": { "href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7" diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-14.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-14.json deleted file mode 100644 index 4cda5a84e8..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-14.json +++ /dev/null @@ -1,137 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633", - "pull_request_review_id": 937124048, - "id": 846624633, - "node_id": "PRRC_kwDODFTdCc4ydnd5", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "Sample review comment", - "created_at": "2022-04-09T12:15:13Z", - "updated_at": "2022-04-09T12:15:13Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" - }, - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637", - "pull_request_review_id": 937124051, - "id": 846624637, - "node_id": "PRRC_kwDODFTdCc4ydnd9", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "This is a reply.", - "created_at": "2022-04-09T12:15:15Z", - "updated_at": "2022-04-09T12:15:15Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT", - "in_reply_to_id": 846624633 - } -] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-16.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-16.json deleted file mode 100644 index 7bdf214904..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-16.json +++ /dev/null @@ -1,137 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633", - "pull_request_review_id": 937124048, - "id": 846624633, - "node_id": "PRRC_kwDODFTdCc4ydnd5", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "Updated review comment", - "created_at": "2022-04-09T12:15:13Z", - "updated_at": "2022-04-09T12:15:16Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" - }, - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637", - "pull_request_review_id": 937124051, - "id": 846624637, - "node_id": "PRRC_kwDODFTdCc4ydnd9", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "This is a reply.", - "created_at": "2022-04-09T12:15:15Z", - "updated_at": "2022-04-09T12:15:15Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT", - "in_reply_to_id": 846624633 - } -] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-18.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-18.json deleted file mode 100644 index 790346e225..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-18.json +++ /dev/null @@ -1,69 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637", - "pull_request_review_id": 937124051, - "id": 846624637, - "node_id": "PRRC_kwDODFTdCc4ydnd9", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "This is a reply.", - "created_at": "2022-04-09T12:15:15Z", - "updated_at": "2022-04-09T12:15:15Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" - } -] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-5.json deleted file mode 100644 index ceb0c285e0..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-5.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633", - "pull_request_review_id": 937124048, - "id": 846624633, - "node_id": "PRRC_kwDODFTdCc4ydnd5", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "Sample review comment", - "created_at": "2022-04-09T12:15:13Z", - "updated_at": "2022-04-09T12:15:13Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" -} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-6.json deleted file mode 100644 index 1800a49e08..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments-6.json +++ /dev/null @@ -1,69 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633", - "pull_request_review_id": 937124048, - "id": 846624633, - "node_id": "PRRC_kwDODFTdCc4ydnd5", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "Sample review comment", - "created_at": "2022-04-09T12:15:13Z", - "updated_at": "2022-04-09T12:15:13Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" - } -] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json deleted file mode 100644 index d3a084746f..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637", - "pull_request_review_id": 937124051, - "id": 846624637, - "node_id": "PRRC_kwDODFTdCc4ydnd9", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "This is a reply.", - "created_at": "2022-04-09T12:15:15Z", - "updated_at": "2022-04-09T12:15:15Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624637" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT", - "in_reply_to_id": 846624633 -} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450-19.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456-30.json similarity index 90% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450-19.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456-30.json index 741972649d..2563ea499d 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_450-19.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456-30.json @@ -1,41 +1,41 @@ { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "id": 904870051, - "node_id": "PR_kwDODFTdCc417zij", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450", - "diff_url": "https://github.com/hub4j-test-org/github-api/pull/450.diff", - "patch_url": "https://github.com/hub4j-test-org/github-api/pull/450.patch", - "issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450", - "number": 450, + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "id": 973840601, + "node_id": "PR_kwDODFTdCc46C6DZ", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456", + "diff_url": "https://github.com/hub4j-test-org/github-api/pull/456.diff", + "patch_url": "https://github.com/hub4j-test-org/github-api/pull/456.patch", + "issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456", + "number": 456, "state": "closed", "locked": false, "title": "pullRequestReviewComments", "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", "type": "User", "site_admin": false }, "body": "## test", - "created_at": "2022-04-09T12:15:11Z", - "updated_at": "2022-04-09T12:15:18Z", - "closed_at": "2022-04-09T12:15:18Z", + "created_at": "2022-06-21T17:18:17Z", + "updated_at": "2022-06-21T17:18:34Z", + "closed_at": "2022-06-21T17:18:34Z", "merged_at": null, - "merge_commit_sha": "1b4f92fc0c970eab91ebee6e8e63d51c657ecb83", + "merge_commit_sha": "f8afb2619503d0880cb3d4433fecf56066cdf2fa", "assignee": null, "assignees": [], "requested_reviewers": [], @@ -43,10 +43,10 @@ "labels": [], "milestone": null, "draft": false, - "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/commits", - "review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/comments", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/commits", + "review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/comments", "review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450/comments", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456/comments", "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7", "head": { "label": "hub4j-test-org:test/stable", @@ -139,16 +139,16 @@ "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", "created_at": "2019-09-06T23:26:04Z", - "updated_at": "2021-11-09T20:13:29Z", - "pushed_at": "2022-04-09T12:15:12Z", + "updated_at": "2022-05-23T14:23:52Z", + "pushed_at": "2022-06-21T17:18:17Z", "git_url": "git://github.com/hub4j-test-org/github-api.git", "ssh_url": "git@github.com:hub4j-test-org/github-api.git", "clone_url": "https://github.com/hub4j-test-org/github-api.git", "svn_url": "https://github.com/hub4j-test-org/github-api", "homepage": "http://github-api.kohsuke.org/", "size": 19045, - "stargazers_count": 0, - "watchers_count": 0, + "stargazers_count": 1, + "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, @@ -173,7 +173,7 @@ "visibility": "public", "forks": 0, "open_issues": 7, - "watchers": 0, + "watchers": 1, "default_branch": "main" } }, @@ -268,16 +268,16 @@ "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", "created_at": "2019-09-06T23:26:04Z", - "updated_at": "2021-11-09T20:13:29Z", - "pushed_at": "2022-04-09T12:15:12Z", + "updated_at": "2022-05-23T14:23:52Z", + "pushed_at": "2022-06-21T17:18:17Z", "git_url": "git://github.com/hub4j-test-org/github-api.git", "ssh_url": "git@github.com:hub4j-test-org/github-api.git", "clone_url": "https://github.com/hub4j-test-org/github-api.git", "svn_url": "https://github.com/hub4j-test-org/github-api", "homepage": "http://github-api.kohsuke.org/", "size": 19045, - "stargazers_count": 0, - "watchers_count": 0, + "stargazers_count": 1, + "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, @@ -302,31 +302,31 @@ "visibility": "public", "forks": 0, "open_issues": 7, - "watchers": 0, + "watchers": 1, "default_branch": "main" } }, "_links": { "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" }, "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450" + "href": "https://github.com/hub4j-test-org/github-api/pull/456" }, "issue": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456" }, "comments": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/450/comments" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/456/comments" }, "review_comments": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/comments" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/comments" }, "review_comment": { "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}" }, "commits": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450/commits" + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456/commits" }, "statuses": { "href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7" diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-17.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-17.json new file mode 100644 index 0000000000..16583d680f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-17.json @@ -0,0 +1,69 @@ +[ + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:19Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 8, + "+1": 1, + "-1": 1, + "laugh": 1, + "hooray": 1, + "confused": 1, + "heart": 1, + "rocket": 1, + "eyes": 1 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-25.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-25.json new file mode 100644 index 0000000000..1e68cd8679 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-25.json @@ -0,0 +1,137 @@ +[ + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:19Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 7, + "+1": 1, + "-1": 1, + "laugh": 1, + "hooray": 1, + "confused": 0, + "heart": 1, + "rocket": 1, + "eyes": 1 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" + }, + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952", + "pull_request_review_id": 1013972708, + "id": 902875952, + "node_id": "PRRC_kwDODFTdCc410Msw", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "This is a reply.", + "created_at": "2022-06-21T17:18:30Z", + "updated_at": "2022-06-21T17:18:30Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT", + "in_reply_to_id": 902875759 + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-27.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-27.json new file mode 100644 index 0000000000..68abe05f1e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-27.json @@ -0,0 +1,137 @@ +[ + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Updated review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:32Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 7, + "+1": 1, + "-1": 1, + "laugh": 1, + "hooray": 1, + "confused": 0, + "heart": 1, + "rocket": 1, + "eyes": 1 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" + }, + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952", + "pull_request_review_id": 1013972708, + "id": 902875952, + "node_id": "PRRC_kwDODFTdCc410Msw", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "This is a reply.", + "created_at": "2022-06-21T17:18:30Z", + "updated_at": "2022-06-21T17:18:30Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT", + "in_reply_to_id": 902875759 + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-29.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-29.json new file mode 100644 index 0000000000..27adb209e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-29.json @@ -0,0 +1,69 @@ +[ + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952", + "pull_request_review_id": 1013972708, + "id": 902875952, + "node_id": "PRRC_kwDODFTdCc410Msw", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "This is a reply.", + "created_at": "2022-06-21T17:18:30Z", + "updated_at": "2022-06-21T17:18:30Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-6.json new file mode 100644 index 0000000000..b5f9885508 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-6.json @@ -0,0 +1,67 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:19Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-7.json new file mode 100644 index 0000000000..4bc8a27daa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments-7.json @@ -0,0 +1,69 @@ +[ + { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sample review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:19Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json new file mode 100644 index 0000000000..c5d258a5f3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json @@ -0,0 +1,68 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952", + "pull_request_review_id": 1013972708, + "id": 902875952, + "node_id": "PRRC_kwDODFTdCc410Msw", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "This is a reply.", + "created_at": "2022-06-21T17:18:30Z", + "updated_at": "2022-06-21T17:18:30Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875952" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT", + "in_reply_to_id": 902875759 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json deleted file mode 100644 index 48ddd1bc34..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633", - "pull_request_review_id": 937124048, - "id": 846624633, - "node_id": "PRRC_kwDODFTdCc4ydnd5", - "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", - "path": "README.md", - "position": 1, - "original_position": 1, - "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "body": "Updated review comment", - "created_at": "2022-04-09T12:15:13Z", - "updated_at": "2022-04-09T12:15:16Z", - "html_url": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633", - "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450", - "author_association": "MEMBER", - "_links": { - "self": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" - }, - "html": { - "href": "https://github.com/hub4j-test-org/github-api/pull/450#discussion_r846624633" - }, - "pull_request": { - "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" - } - }, - "reactions": { - "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "start_line": null, - "original_start_line": null, - "start_side": null, - "line": 1, - "original_line": 1, - "side": "LEFT" -} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json deleted file mode 100644 index 8f583f3b19..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json +++ /dev/null @@ -1,28 +0,0 @@ -[ - { - "id": 158534106, - "node_id": "REA_lATODFTdCc4ydnd5zglzCdo", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "content": "confused", - "created_at": "2022-04-09T12:15:14Z" - } -] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json deleted file mode 100644 index 3060dcda5e..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "id": 158534106, - "node_id": "REA_lATODFTdCc4ydnd5zglzCdo", - "user": { - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false - }, - "content": "confused", - "created_at": "2022-04-09T12:15:14Z" -} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json new file mode 100644 index 0000000000..46f3e9befa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json @@ -0,0 +1,67 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759", + "pull_request_review_id": 1013972442, + "id": 902875759, + "node_id": "PRRC_kwDODFTdCc410Mpv", + "diff_hunk": "@@ -1,3 +1,4 @@\n-Java API for GitHub", + "path": "README.md", + "position": 1, + "original_position": 1, + "commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "original_commit_id": "07374fe73aff1c2024a8d4114b32406c7a8e89b7", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "body": "Updated review comment", + "created_at": "2022-06-21T17:18:19Z", + "updated_at": "2022-06-21T17:18:32Z", + "html_url": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759", + "pull_request_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456", + "author_association": "MEMBER", + "_links": { + "self": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" + }, + "html": { + "href": "https://github.com/hub4j-test-org/github-api/pull/456#discussion_r902875759" + }, + "pull_request": { + "href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" + } + }, + "reactions": { + "url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "total_count": 7, + "+1": 1, + "-1": 1, + "laugh": 1, + "hooray": 1, + "confused": 0, + "heart": 1, + "rocket": 1, + "eyes": 1 + }, + "start_line": null, + "original_start_line": null, + "start_side": null, + "line": 1, + "original_line": 1, + "side": "LEFT" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json new file mode 100644 index 0000000000..5853c04f14 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json @@ -0,0 +1,26 @@ +{ + "id": 170855255, + "node_id": "REA_lATODFTdCc410MpvzgovC1c", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "confused", + "created_at": "2022-06-21T17:18:21Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json new file mode 100644 index 0000000000..fa020ac370 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json @@ -0,0 +1,26 @@ +{ + "id": 170855257, + "node_id": "REA_lATODFTdCc410MpvzgovC1k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "rocket", + "created_at": "2022-06-21T17:18:22Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json new file mode 100644 index 0000000000..61daf80e73 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json @@ -0,0 +1,26 @@ +{ + "id": 170855259, + "node_id": "REA_lATODFTdCc410MpvzgovC1s", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "hooray", + "created_at": "2022-06-21T17:18:23Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json new file mode 100644 index 0000000000..88397d87e2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json @@ -0,0 +1,26 @@ +{ + "id": 170855262, + "node_id": "REA_lATODFTdCc410MpvzgovC14", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "heart", + "created_at": "2022-06-21T17:18:23Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json new file mode 100644 index 0000000000..9d4e4b26b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json @@ -0,0 +1,26 @@ +{ + "id": 170855266, + "node_id": "REA_lATODFTdCc410MpvzgovC2I", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "-1", + "created_at": "2022-06-21T17:18:24Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json new file mode 100644 index 0000000000..3112bbcd98 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json @@ -0,0 +1,26 @@ +{ + "id": 170855267, + "node_id": "REA_lATODFTdCc410MpvzgovC2M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "+1", + "created_at": "2022-06-21T17:18:25Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json new file mode 100644 index 0000000000..40782b3614 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json @@ -0,0 +1,26 @@ +{ + "id": 170855270, + "node_id": "REA_lATODFTdCc410MpvzgovC2Y", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "laugh", + "created_at": "2022-06-21T17:18:25Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json new file mode 100644 index 0000000000..e17184fe3b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json @@ -0,0 +1,184 @@ +[ + { + "id": 170855251, + "node_id": "REA_lATODFTdCc410MpvzgovC1M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "eyes", + "created_at": "2022-06-21T17:18:21Z" + }, + { + "id": 170855257, + "node_id": "REA_lATODFTdCc410MpvzgovC1k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "rocket", + "created_at": "2022-06-21T17:18:22Z" + }, + { + "id": 170855259, + "node_id": "REA_lATODFTdCc410MpvzgovC1s", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "hooray", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855262, + "node_id": "REA_lATODFTdCc410MpvzgovC14", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "heart", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855266, + "node_id": "REA_lATODFTdCc410MpvzgovC2I", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "-1", + "created_at": "2022-06-21T17:18:24Z" + }, + { + "id": 170855267, + "node_id": "REA_lATODFTdCc410MpvzgovC2M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "+1", + "created_at": "2022-06-21T17:18:25Z" + }, + { + "id": 170855270, + "node_id": "REA_lATODFTdCc410MpvzgovC2Y", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "laugh", + "created_at": "2022-06-21T17:18:25Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json new file mode 100644 index 0000000000..83cab071ee --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json @@ -0,0 +1,26 @@ +{ + "id": 170855273, + "node_id": "REA_lATODFTdCc410MpvzgovC2k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "confused", + "created_at": "2022-06-21T17:18:28Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json new file mode 100644 index 0000000000..a34d79313a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json @@ -0,0 +1,210 @@ +[ + { + "id": 170855251, + "node_id": "REA_lATODFTdCc410MpvzgovC1M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "eyes", + "created_at": "2022-06-21T17:18:21Z" + }, + { + "id": 170855257, + "node_id": "REA_lATODFTdCc410MpvzgovC1k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "rocket", + "created_at": "2022-06-21T17:18:22Z" + }, + { + "id": 170855259, + "node_id": "REA_lATODFTdCc410MpvzgovC1s", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "hooray", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855262, + "node_id": "REA_lATODFTdCc410MpvzgovC14", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "heart", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855266, + "node_id": "REA_lATODFTdCc410MpvzgovC2I", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "-1", + "created_at": "2022-06-21T17:18:24Z" + }, + { + "id": 170855267, + "node_id": "REA_lATODFTdCc410MpvzgovC2M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "+1", + "created_at": "2022-06-21T17:18:25Z" + }, + { + "id": 170855270, + "node_id": "REA_lATODFTdCc410MpvzgovC2Y", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "laugh", + "created_at": "2022-06-21T17:18:25Z" + }, + { + "id": 170855273, + "node_id": "REA_lATODFTdCc410MpvzgovC2k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "confused", + "created_at": "2022-06-21T17:18:28Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json new file mode 100644 index 0000000000..e17184fe3b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json @@ -0,0 +1,184 @@ +[ + { + "id": 170855251, + "node_id": "REA_lATODFTdCc410MpvzgovC1M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "eyes", + "created_at": "2022-06-21T17:18:21Z" + }, + { + "id": 170855257, + "node_id": "REA_lATODFTdCc410MpvzgovC1k", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "rocket", + "created_at": "2022-06-21T17:18:22Z" + }, + { + "id": 170855259, + "node_id": "REA_lATODFTdCc410MpvzgovC1s", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "hooray", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855262, + "node_id": "REA_lATODFTdCc410MpvzgovC14", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "heart", + "created_at": "2022-06-21T17:18:23Z" + }, + { + "id": 170855266, + "node_id": "REA_lATODFTdCc410MpvzgovC2I", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "-1", + "created_at": "2022-06-21T17:18:24Z" + }, + { + "id": 170855267, + "node_id": "REA_lATODFTdCc410MpvzgovC2M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "+1", + "created_at": "2022-06-21T17:18:25Z" + }, + { + "id": 170855270, + "node_id": "REA_lATODFTdCc410MpvzgovC2Y", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "laugh", + "created_at": "2022-06-21T17:18:25Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json new file mode 100644 index 0000000000..b9772e2d0f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json @@ -0,0 +1,26 @@ +{ + "id": 170855251, + "node_id": "REA_lATODFTdCc410MpvzgovC1M", + "user": { + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false + }, + "content": "eyes", + "created_at": "2022-06-21T17:18:21Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-1.json new file mode 100644 index 0000000000..4994365297 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false, + "name": "Vasilis Gakias", + "company": null, + "blog": "", + "location": "greece", + "email": "vasileios.gakias@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 14, + "public_gists": 0, + "followers": 2, + "following": 2, + "created_at": "2016-11-10T23:20:00Z", + "updated_at": "2022-06-19T00:21:42Z", + "private_gists": 0, + "total_private_repos": 0, + "owned_private_repos": 0, + "disk_usage": 12317, + "collaborators": 0, + "two_factor_authentication": false, + "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/pullRequestReviewComments/__files/users_gsmet-7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/users_gsmet-7.json deleted file mode 100644 index 6fa76a1f24..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/users_gsmet-7.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "login": "gsmet", - "id": 1279749, - "node_id": "MDQ6VXNlcjEyNzk3NDk=", - "avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gsmet", - "html_url": "https://github.com/gsmet", - "followers_url": "https://api.github.com/users/gsmet/followers", - "following_url": "https://api.github.com/users/gsmet/following{/other_user}", - "gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gsmet/subscriptions", - "organizations_url": "https://api.github.com/users/gsmet/orgs", - "repos_url": "https://api.github.com/users/gsmet/repos", - "events_url": "https://api.github.com/users/gsmet/events{/privacy}", - "received_events_url": "https://api.github.com/users/gsmet/received_events", - "type": "User", - "site_admin": false, - "name": "Guillaume Smet", - "company": "Red Hat", - "blog": "https://lesincroyableslivres.fr/", - "location": "Lyon, France", - "email": "guillaume.smet@gmail.com", - "hireable": null, - "bio": "Happy camper at Red Hat, working on Quarkus and the Hibernate portfolio.", - "twitter_username": "gsmet_", - "public_repos": 147, - "public_gists": 15, - "followers": 172, - "following": 3, - "created_at": "2011-12-22T11:03:22Z", - "updated_at": "2022-04-06T15:07:12Z", - "private_gists": 14, - "total_private_repos": 4, - "owned_private_repos": 1, - "disk_usage": 70882, - "collaborators": 1, - "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/pullRequestReviewComments/__files/users_kisaga-8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/users_kisaga-8.json new file mode 100644 index 0000000000..4994365297 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/__files/users_kisaga-8.json @@ -0,0 +1,46 @@ +{ + "login": "kisaga", + "id": 23390439, + "node_id": "MDQ6VXNlcjIzMzkwNDM5", + "avatar_url": "https://avatars.githubusercontent.com/u/23390439?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kisaga", + "html_url": "https://github.com/kisaga", + "followers_url": "https://api.github.com/users/kisaga/followers", + "following_url": "https://api.github.com/users/kisaga/following{/other_user}", + "gists_url": "https://api.github.com/users/kisaga/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kisaga/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kisaga/subscriptions", + "organizations_url": "https://api.github.com/users/kisaga/orgs", + "repos_url": "https://api.github.com/users/kisaga/repos", + "events_url": "https://api.github.com/users/kisaga/events{/privacy}", + "received_events_url": "https://api.github.com/users/kisaga/received_events", + "type": "User", + "site_admin": false, + "name": "Vasilis Gakias", + "company": null, + "blog": "", + "location": "greece", + "email": "vasileios.gakias@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 14, + "public_gists": 0, + "followers": 2, + "following": 2, + "created_at": "2016-11-10T23:20:00Z", + "updated_at": "2022-06-19T00:21:42Z", + "private_gists": 0, + "total_private_repos": 0, + "owned_private_repos": 0, + "disk_usage": 12317, + "collaborators": 0, + "two_factor_authentication": false, + "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/pullRequestReviewComments/mappings/orgs_hub4j-test-org-1.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_hub4j-test-org-2.json similarity index 64% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_hub4j-test-org-1.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_hub4j-test-org-2.json index 0036251e18..657da03498 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_hub4j-test-org-1.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/orgs_hub4j-test-org-2.json @@ -1,5 +1,5 @@ { - "id": "4b84c118-4a9c-45ee-8cbe-52b6a3763adf", + "id": "c0c08e2f-2181-4906-b788-ecc6d3f7a1ae", "name": "orgs_hub4j-test-org", "request": { "url": "/orgs/hub4j-test-org", @@ -12,25 +12,26 @@ }, "response": { "status": 200, - "bodyFileName": "orgs_hub4j-test-org-1.json", + "bodyFileName": "orgs_hub4j-test-org-2.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:11 GMT", + "Date": "Tue, 21 Jun 2022 17:18:16 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"861b38147d37bd59e507771e76ec048def20dd6e5ac5b75aceb01c8b9f0ef4f5\"", + "ETag": "W/\"5494d1fbf995fc6e1df1d8f680702d945f50908b62ab4b4760b0b38bd1505057\"", "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4982", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "18", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "6", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -38,10 +39,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF26:E0D5:8A28DE:8F7145:625178CE" + "X-GitHub-Request-Id": "AF60:6281:4D717E:4F2335:62B1FD57" } }, - "uuid": "4b84c118-4a9c-45ee-8cbe-52b6a3763adf", + "uuid": "c0c08e2f-2181-4906-b788-ecc6d3f7a1ae", "persistent": true, - "insertionIndex": 1 + "insertionIndex": 2 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-2.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-3.json similarity index 60% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-2.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-3.json index 5f2c551e0f..5677ea1ca8 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-2.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api-3.json @@ -1,5 +1,5 @@ { - "id": "af7bd5d9-e014-496e-973f-f44f48f8d639", + "id": "1893f17b-1315-4dc4-8fe2-96bd3e747e84", "name": "repos_hub4j-test-org_github-api", "request": { "url": "/repos/hub4j-test-org/github-api", @@ -12,25 +12,26 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api-2.json", + "bodyFileName": "repos_hub4j-test-org_github-api-3.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:11 GMT", + "Date": "Tue, 21 Jun 2022 17:18:16 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"1c2c68b5cb572680f51498796d0b11bee390107942cb9d9c88b25679760a86c7\"", - "Last-Modified": "Tue, 09 Nov 2021 20:13:29 GMT", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"cb99d6332ac5c8b2c09a1b93d8c078ce24f73cb0b79858a1516f6f939aae0a72\"", + "Last-Modified": "Mon, 23 May 2022 14:23:52 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4981", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "19", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "7", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -38,10 +39,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF28:5187:88B618:8DFE6A:625178CF" + "X-GitHub-Request-Id": "AF62:DDCC:3B63EA:3CF72D:62B1FD58" } }, - "uuid": "af7bd5d9-e014-496e-973f-f44f48f8d639", + "uuid": "1893f17b-1315-4dc4-8fe2-96bd3e747e84", "persistent": true, - "insertionIndex": 2 + "insertionIndex": 3 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-3.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-4.json similarity index 68% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-3.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-4.json index a8695af2b2..d4f20afd9a 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-3.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls-4.json @@ -1,5 +1,5 @@ { - "id": "89d3f876-6802-4140-b2d9-cad6e5a66930", + "id": "b24c0aff-401f-4e35-add3-2d27e799860c", "name": "repos_hub4j-test-org_github-api_pulls", "request": { "url": "/repos/hub4j-test-org/github-api/pulls", @@ -19,24 +19,25 @@ }, "response": { "status": 201, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls-3.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls-4.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:12 GMT", + "Date": "Tue, 21 Jun 2022 17:18:17 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"68840492424616213106fcff4e8b52e7e574d2b1799abeb22e1ee3cc4f65e5b0\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "\"801196cbb450ae48f1d688f815e6830d4e6a687017f5373765f170cd3af6b501\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4980", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "20", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "8", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,11 +45,11 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF2A:5C30:19CC336:1A3AF94:625178CF", - "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/450" + "X-GitHub-Request-Id": "AF64:9DB3:1B392:2BAFF:62B1FD58", + "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/456" } }, - "uuid": "89d3f876-6802-4140-b2d9-cad6e5a66930", + "uuid": "b24c0aff-401f-4e35-add3-2d27e799860c", "persistent": true, - "insertionIndex": 3 + "insertionIndex": 4 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450-19.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456-30.json similarity index 59% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450-19.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456-30.json index 7af46ed577..3be792462b 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450-19.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456-30.json @@ -1,8 +1,8 @@ { - "id": "e76e5f8a-7440-4747-9db3-8cc42782620e", - "name": "repos_hub4j-test-org_github-api_pulls_450", + "id": "2ef0656b-ee95-4cb0-9b2b-30a96164114b", + "name": "repos_hub4j-test-org_github-api_pulls_456", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450", + "url": "/repos/hub4j-test-org/github-api/pulls/456", "method": "PATCH", "headers": { "Accept": { @@ -19,24 +19,25 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450-19.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456-30.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:19 GMT", + "Date": "Tue, 21 Jun 2022 17:18:36 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"399c2e3c022b7bf249d0200e9176625d86810ac54e14542e88945ad9df7b0e84\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"14e4628277ee83d18534ba6608492413533702d07c90b617ad7a2c72e1fa8722\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4964", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "36", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "34", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,10 +45,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF4E:39AA:E9643A:EF75F6:625178D6" + "X-GitHub-Request-Id": "AF98:BA0B:4D3E8B:4EEBAE:62B1FD6A" } }, - "uuid": "e76e5f8a-7440-4747-9db3-8cc42782620e", + "uuid": "2ef0656b-ee95-4cb0-9b2b-30a96164114b", "persistent": true, - "insertionIndex": 19 + "insertionIndex": 30 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-6.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-17.json similarity index 57% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-6.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-17.json index 76e67d8969..a35e9865ac 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-6.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-17.json @@ -1,8 +1,8 @@ { - "id": "9b869e00-5373-4fb4-99cc-78a9a4d07476", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "85861b33-c13c-446b-88e7-95d2de3b0c47", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", "method": "GET", "headers": { "Accept": { @@ -12,24 +12,25 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments-6.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-17.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:13 GMT", + "Date": "Tue, 21 Jun 2022 17:18:26 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"a5079bbf1657991249b9611ffb3cda3ae41e08b4b8bc0f4c4703fba99fbb0dec\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"b17862e11b769cb4aeb5be57ec9428150b5b22a089fc9445cb3f60913d89a83e\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4977", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "23", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "21", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -37,13 +38,13 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF30:ECE0:7B8551:80CDD1:625178D1" + "X-GitHub-Request-Id": "AF7E:307B:1DDEEF:1F24B5:62B1FD62" } }, - "uuid": "9b869e00-5373-4fb4-99cc-78a9a4d07476", + "uuid": "85861b33-c13c-446b-88e7-95d2de3b0c47", "persistent": true, - "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments", - "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-2", - "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-3", - "insertionIndex": 6 + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-3", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-4", + "insertionIndex": 17 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-25.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-25.json new file mode 100644 index 0000000000..f046039c1c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-25.json @@ -0,0 +1,50 @@ +{ + "id": "d5f1a1b2-c1cc-4ed1-aaee-5008cebe3559", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-25.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"51c5cdd4e6dceaf9812dba5221f851b5ea8de5b79a0cc551f6ba3fff235e3c5b\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "29", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF8E:BA0A:31BD35:332F9A:62B1FD67" + } + }, + "uuid": "d5f1a1b2-c1cc-4ed1-aaee-5008cebe3559", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-4", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-5", + "insertionIndex": 25 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-14.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-27.json similarity index 61% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-14.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-27.json index 7c967dd7ae..ef556a2946 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-14.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-27.json @@ -1,8 +1,8 @@ { - "id": "688a8bee-65e8-4230-9e8b-9a7b4edf8f5a", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "c16019df-b04e-44ee-8e05-6aec9d395fd7", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", "method": "GET", "headers": { "Accept": { @@ -12,23 +12,24 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments-14.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-27.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:16 GMT", + "Date": "Tue, 21 Jun 2022 17:18:32 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"8710e53c6a4f5e8cb30cd02074a24ed05e154c81a9105e6c7fe8bdea7d708947\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"29ae28d5d668de75ea1082c3a8d7461eacd827103677598b4320a9a92ec6e08d\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4969", - "X-RateLimit-Reset": "1649510049", + "X-RateLimit-Reset": "1655835493", "X-RateLimit-Used": "31", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -37,13 +38,13 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF42:11728:24F9D:6D1C2:625178D4" + "X-GitHub-Request-Id": "AF92:9DB8:51D25C:537C96:62B1FD68" } }, - "uuid": "688a8bee-65e8-4230-9e8b-9a7b4edf8f5a", + "uuid": "c16019df-b04e-44ee-8e05-6aec9d395fd7", "persistent": true, - "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments", - "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-3", - "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-4", - "insertionIndex": 14 + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-5", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-6", + "insertionIndex": 27 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-16.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-29.json similarity index 57% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-16.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-29.json index 14ece4fa0f..80e93e6315 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-16.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-29.json @@ -1,8 +1,8 @@ { - "id": "6e4fb0b4-c771-4728-bd07-79e2afed9108", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "f692d85c-3ad3-4217-a83b-0ee54f002468", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", "method": "GET", "headers": { "Accept": { @@ -12,23 +12,24 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments-16.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-29.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:17 GMT", + "Date": "Tue, 21 Jun 2022 17:18:34 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"6f4ddc206cbb07f1bb428abed4f999d54e4173bef1e79779f01b146e301cab19\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"795f2a7f1d3bac3b49904945b4c6865e1b3a4098b74587a4d78c73a2b0ed4a80\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4967", - "X-RateLimit-Reset": "1649510049", + "X-RateLimit-Reset": "1655835493", "X-RateLimit-Used": "33", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -37,13 +38,12 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF46:020E:1B9F471:1C125DB:625178D5" + "X-GitHub-Request-Id": "AF96:FA74:1C6330:1DA6C6:62B1FD6A" } }, - "uuid": "6e4fb0b4-c771-4728-bd07-79e2afed9108", + "uuid": "f692d85c-3ad3-4217-a83b-0ee54f002468", "persistent": true, - "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments", - "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-4", - "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-5", - "insertionIndex": 16 + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-6", + "insertionIndex": 29 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-4.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-5.json similarity index 60% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-4.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-5.json index 66d15a4a6d..8d5037aedc 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-4.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-5.json @@ -1,8 +1,8 @@ { - "id": "bf14e708-e9c6-44f5-97e7-ec6c46ba4976", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "e563f1db-bc81-41c8-a710-187ae27783c4", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", "method": "GET", "headers": { "Accept": { @@ -15,21 +15,22 @@ "body": "[]", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:12 GMT", + "Date": "Tue, 21 Jun 2022 17:18:18 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"e33d671b99cfd3b69cbea6599065ce3f5431730434d2452958e0865316fdb5be\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "\"20fc4441d036edca28dbcc065f9e32b03003e2a9085ffd64254446cf3cf0604f\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4979", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "21", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "9", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -37,13 +38,13 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF2C:5C30:19CC4C4:1A3B129:625178D0" + "X-GitHub-Request-Id": "AF66:10EF1:52F61F:54B37F:62B1FD5A" } }, - "uuid": "bf14e708-e9c6-44f5-97e7-ec6c46ba4976", + "uuid": "e563f1db-bc81-41c8-a710-187ae27783c4", "persistent": true, - "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments", + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", "requiredScenarioState": "Started", - "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-450-comments-2", - "insertionIndex": 4 + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-2", + "insertionIndex": 5 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-5.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-6.json similarity index 61% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-5.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-6.json index 43705a131b..cd7263905c 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments-5.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-6.json @@ -1,8 +1,8 @@ { - "id": "9fd65261-6489-4fab-bc3d-c475bd9d0d65", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments", + "id": "006f3169-0085-45a1-b7ba-8a246c639b03", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", "method": "POST", "headers": { "Accept": { @@ -19,24 +19,25 @@ }, "response": { "status": 201, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments-5.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-6.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:13 GMT", + "Date": "Tue, 21 Jun 2022 17:18:19 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"43b4e6146c9e9e1755b9a4de3f42b00f2c8235931a60c1b30154ec06e6a9290d\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "\"36a5ee598a508736adcb8410419b27920cc05df644e0a393a293378ac9d5479f\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4978", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "22", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "10", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,11 +45,11 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF2E:C0CA:18919B4:19034D3:625178D0", - "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624633" + "X-GitHub-Request-Id": "AF68:4006:15415:25A5D:62B1FD5A", + "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875759" } }, - "uuid": "9fd65261-6489-4fab-bc3d-c475bd9d0d65", + "uuid": "006f3169-0085-45a1-b7ba-8a246c639b03", "persistent": true, - "insertionIndex": 5 + "insertionIndex": 6 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-7.json new file mode 100644 index 0000000000..1c1a2520a2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments-7.json @@ -0,0 +1,50 @@ +{ + "id": "567785f1-9e06-4054-86c9-4a10605ec52a", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"53d5962598630d2c8c75bc71115eb7887c93b96424168d2183c1e9b2beedff65\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "11", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF6A:BA0B:4D2C30:4ED8D6:62B1FD5B" + } + }, + "uuid": "567785f1-9e06-4054-86c9-4a10605ec52a", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-2", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-pulls-456-comments-3", + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json similarity index 58% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json index bb2baa99bc..d67e084fb0 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json @@ -1,8 +1,8 @@ { - "id": "5838af27-7458-4d23-8891-b604cdbfc226", - "name": "repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies", + "id": "37ca8b73-12d2-49a3-8313-f0d431df04cb", + "name": "repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/450/comments/846624633/replies", + "url": "/repos/hub4j-test-org/github-api/pulls/456/comments/902875759/replies", "method": "POST", "headers": { "Accept": { @@ -19,24 +19,25 @@ }, "response": { "status": 201, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_450_comments_846624633_replies-13.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_456_comments_902875759_replies-24.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:16 GMT", + "Date": "Tue, 21 Jun 2022 17:18:31 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"b084031e7bce31f52fa9ac44e1c459d48890405b660e08b7112aa27b9df8edbe\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "\"50c45442ba1c3250fe571c1279aa8974e99f137be5f8c4b25bc2bff97a31e30d\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4970", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "30", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "28", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,11 +45,11 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF40:ECF2:FE7DEA:10484D5:625178D3", - "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/846624637" + "X-GitHub-Request-Id": "AF8C:5CC2:53C762:557D24:62B1FD66", + "Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments/902875952" } }, - "uuid": "5838af27-7458-4d23-8891-b604cdbfc226", + "uuid": "37ca8b73-12d2-49a3-8313-f0d431df04cb", "persistent": true, - "insertionIndex": 13 + "insertionIndex": 24 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-12.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-12.json deleted file mode 100644 index 5a52023df5..0000000000 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-12.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "id": "299750d0-5f58-4107-ac52-5abd07ec5399", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions", - "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", - "method": "GET", - "headers": { - "Accept": { - "equalTo": "application/vnd.github.squirrel-girl-preview+json" - } - } - }, - "response": { - "status": 200, - "body": "[]", - "headers": { - "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:15 GMT", - "Content-Type": "application/json; charset=utf-8", - "Cache-Control": "private, max-age=60, s-maxage=60", - "Vary": [ - "Accept, Authorization, Cookie, X-GitHub-OTP", - "Accept-Encoding, Accept, X-Requested-With" - ], - "ETag": "\"1edf80ecd98d11d98113d5aa3cef7021f4a60d76d4a01328e8d3552451f43ce4\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", - "X-Accepted-OAuth-Scopes": "", - "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", - "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4971", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "29", - "X-RateLimit-Resource": "core", - "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", - "X-Frame-Options": "deny", - "X-Content-Type-Options": "nosniff", - "X-XSS-Protection": "0", - "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF3E:6F18:1774C1B:17E58B5:625178D3" - } - }, - "uuid": "299750d0-5f58-4107-ac52-5abd07ec5399", - "persistent": true, - "scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions", - "requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions-3", - "insertionIndex": 12 -} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json similarity index 62% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json index 3ec700f20c..fbcd0c2d63 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json @@ -1,8 +1,8 @@ { - "id": "7d4604de-66f8-4b0f-8ed6-68ad50f6198b", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633", + "id": "51880262-5604-45fb-b2df-e451862c07bc", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759", "method": "PATCH", "headers": { "Accept": { @@ -19,24 +19,25 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_846624633-15.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759-26.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:17 GMT", + "Date": "Tue, 21 Jun 2022 17:18:32 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"cfe05223b8754f8565f9561ec6cceb396bab4d9a715901639759d100e9245f7b\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"3d5bb596716385bf97ed2a4ab88e3787b046ad094a2b4d1f2adad85ea09c2687\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4968", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "32", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "30", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,10 +45,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF44:93CC:3347E4:381853:625178D4" + "X-GitHub-Request-Id": "AF90:13949:5107E6:52BF05:62B1FD67" } }, - "uuid": "7d4604de-66f8-4b0f-8ed6-68ad50f6198b", + "uuid": "51880262-5604-45fb-b2df-e451862c07bc", "persistent": true, - "insertionIndex": 15 + "insertionIndex": 26 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-17.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-28.json similarity index 55% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-17.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-28.json index 35f340e4db..3a2f4e4b44 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633-17.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759-28.json @@ -1,8 +1,8 @@ { - "id": "415948c0-a8be-4ea1-8941-320544683414", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633", + "id": "3b867da2-e92f-4798-9f98-b92a428630d3", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759", "method": "DELETE", "headers": { "Accept": { @@ -14,14 +14,15 @@ "status": 204, "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:18 GMT", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "Date": "Tue, 21 Jun 2022 17:18:33 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4966", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "34", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "32", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -30,10 +31,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding, Accept, X-Requested-With", - "X-GitHub-Request-Id": "BF4A:E0D5:8A2CAF:8F753C:625178D5" + "X-GitHub-Request-Id": "AF94:10EF1:530A33:54C7FD:62B1FD69" } }, - "uuid": "415948c0-a8be-4ea1-8941-320544683414", + "uuid": "3b867da2-e92f-4798-9f98-b92a428630d3", "persistent": true, - "insertionIndex": 17 + "insertionIndex": 28 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json new file mode 100644 index 0000000000..7e25a02a0a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json @@ -0,0 +1,57 @@ +{ + "id": "a98d69d3-69d9-401b-8382-8700dd69658e", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"confused\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-10.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"4bb664a12ecdec449205f732e493e0b967130eca58f62d0f40959218ffcaa574\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "14", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF70:FA76:4F82B6:512B8F:62B1FD5D" + } + }, + "uuid": "a98d69d3-69d9-401b-8382-8700dd69658e", + "persistent": true, + "scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-2", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json new file mode 100644 index 0000000000..985a5399ff --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json @@ -0,0 +1,54 @@ +{ + "id": "eeab61fe-6ac9-4c95-9fc7-e8cd6e373fcc", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"rocket\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-11.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"4b2d342135a3ae806e9a1b2eac1a06b18d23a89d674dc9d5f22dfbe2f33658f0\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "15", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF72:DDCC:3B69BE:3CFD28:62B1FD5E" + } + }, + "uuid": "eeab61fe-6ac9-4c95-9fc7-e8cd6e373fcc", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json new file mode 100644 index 0000000000..c9175090d8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json @@ -0,0 +1,54 @@ +{ + "id": "91798d64-09f0-49ef-90fe-03523248212e", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"hooray\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-12.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"ee486cbb5507982be6d2d430523d5bae7d0ff184a9110640a038ff3d8865672a\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "16", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF74:400C:4C95D5:4E45FB:62B1FD5E" + } + }, + "uuid": "91798d64-09f0-49ef-90fe-03523248212e", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json new file mode 100644 index 0000000000..0c334177ce --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json @@ -0,0 +1,54 @@ +{ + "id": "cad3de94-5c27-4974-9024-060c947d756b", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"heart\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-13.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"f8fdfebcabd4003a9c02baedc54795453a0d475aa555047801ba623afdfd7b23\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "17", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF76:0C3F:563EB5:57FD54:62B1FD5F" + } + }, + "uuid": "cad3de94-5c27-4974-9024-060c947d756b", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json new file mode 100644 index 0000000000..f2fe9fe9aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json @@ -0,0 +1,54 @@ +{ + "id": "704056db-53ab-4856-9372-f42303344d33", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"-1\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-14.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"7128974b9114934f390f2431433340b61f858c1ca1ff779f4d66ce641aa9a0e1\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "18", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF78:C342:1D2B84:1E6EF4:62B1FD60" + } + }, + "uuid": "704056db-53ab-4856-9372-f42303344d33", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json new file mode 100644 index 0000000000..3e33d14c8a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json @@ -0,0 +1,54 @@ +{ + "id": "7b1f91b5-e3af-4ba6-a167-e072c50f034d", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"+1\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-15.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"7c65a98fc7dca7d089d476aacf4207ed48db491f943b13f1731a3e1a79068ae0\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "19", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF7A:FA73:C4E88:D6D68:62B1FD60" + } + }, + "uuid": "7b1f91b5-e3af-4ba6-a167-e072c50f034d", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json new file mode 100644 index 0000000000..dbceef14af --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json @@ -0,0 +1,54 @@ +{ + "id": "ae34b71c-9d98-4774-9de0-e9e2138fa9f8", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"laugh\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-16.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"e8940d2d1f195c8045e783b98ab7c0455de09965355337fc83bcc10da0681316\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "20", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF7C:307C:3A3C6F:3BB292:62B1FD61" + } + }, + "uuid": "ae34b71c-9d98-4774-9de0-e9e2138fa9f8", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json similarity index 50% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-8.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json index 5c8dca174f..b89d32c06b 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-8.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json @@ -1,8 +1,8 @@ { - "id": "eb2f1f85-6af8-4dd3-88cd-f082810aeff3", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions", + "id": "746ab178-541e-4dca-9183-b10598bf3ccf", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", "method": "GET", "headers": { "Accept": { @@ -12,24 +12,25 @@ }, "response": { "status": 200, - "body": "[]", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-19.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:14 GMT", + "Date": "Tue, 21 Jun 2022 17:18:27 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"1edf80ecd98d11d98113d5aa3cef7021f4a60d76d4a01328e8d3552451f43ce4\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"b6ff492e1af9b061cffc7f5c9a251fbd428c9ebb996765012582d54b8799977a\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4975", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "25", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "23", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -37,13 +38,13 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF34:5C2F:F456DF:FA731C:625178D2" + "X-GitHub-Request-Id": "AF82:13949:5101BF:52B8BD:62B1FD63" } }, - "uuid": "eb2f1f85-6af8-4dd3-88cd-f082810aeff3", + "uuid": "746ab178-541e-4dca-9183-b10598bf3ccf", "persistent": true, - "scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions", + "scenarioName": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions", "requiredScenarioState": "Started", - "newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions-2", - "insertionIndex": 8 + "newScenarioState": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-2", + "insertionIndex": 19 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json new file mode 100644 index 0000000000..d1997b75ab --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json @@ -0,0 +1,56 @@ +{ + "id": "41f4ffbd-3ac6-46dc-937a-3280e61e02de", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"content\":\"confused\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-20.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"cf22b35bf81a14d22b24cc6defe32310647a67e41979d0619d2a945c8660b795\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "24", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF84:400C:4C9C17:4E4C69:62B1FD63" + } + }, + "uuid": "41f4ffbd-3ac6-46dc-937a-3280e61e02de", + "persistent": true, + "scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions", + "requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-2", + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json new file mode 100644 index 0000000000..bd4c1f2063 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json @@ -0,0 +1,50 @@ +{ + "id": "d0d80ef0-4ed2-426c-a569-45a7a871301d", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.squirrel-girl-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-21.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d4a6e926798ba7f082f8499aefcd20a98e61eee4fbf391067627b75e9b2e7d58\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "25", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF86:0C3F:564540:580411:62B1FD64" + } + }, + "uuid": "d0d80ef0-4ed2-426c-a569-45a7a871301d", + "persistent": true, + "scenarioName": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions", + "requiredScenarioState": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-2", + "newScenarioState": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-3", + "insertionIndex": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json similarity index 53% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json index dab44cdc59..d1c9a8bc1c 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json @@ -1,8 +1,8 @@ { - "id": "70939cf8-8f75-4e59-9256-8ee42f189524", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions", + "id": "be8ab32b-e885-4806-b87f-3db5973ef7e4", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", "method": "GET", "headers": { "Accept": { @@ -12,23 +12,24 @@ }, "response": { "status": 200, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-10.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-23.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:14 GMT", + "Date": "Tue, 21 Jun 2022 17:18:29 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"22723d49ff74aa1c54569ef296aeda406c960c316d11cf7ba181866b642546f4\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"b6ff492e1af9b061cffc7f5c9a251fbd428c9ebb996765012582d54b8799977a\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4973", - "X-RateLimit-Reset": "1649510049", + "X-RateLimit-Reset": "1655835493", "X-RateLimit-Used": "27", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -37,13 +38,12 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF3A:020B:2F04DA:33D3B6:625178D2" + "X-GitHub-Request-Id": "AF8A:6280:3800FF:398241:62B1FD65" } }, - "uuid": "70939cf8-8f75-4e59-9256-8ee42f189524", + "uuid": "be8ab32b-e885-4806-b87f-3db5973ef7e4", "persistent": true, - "scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions", - "requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions-2", - "newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-comments-846624633-reactions-3", - "insertionIndex": 10 + "scenarioName": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions", + "requiredScenarioState": "scenario-3-repos-hub4j-test-org-github-api-pulls-comments-902875759-reactions-3", + "insertionIndex": 23 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json similarity index 60% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json index f571e74a36..738a0056d2 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json @@ -1,8 +1,8 @@ { - "id": "0e508b89-abf3-440e-b24e-26f7b2d76c84", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions", + "id": "6148fd96-101d-45af-984a-53407454b15c", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions", "method": "POST", "headers": { "Accept": { @@ -11,7 +11,7 @@ }, "bodyPatterns": [ { - "equalToJson": "{\"content\":\"confused\"}", + "equalToJson": "{\"content\":\"eyes\"}", "ignoreArrayOrder": true, "ignoreExtraElements": false } @@ -19,24 +19,25 @@ }, "response": { "status": 201, - "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions-9.json", + "bodyFileName": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions-9.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:14 GMT", + "Date": "Tue, 21 Jun 2022 17:18:21 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "\"ae9288e2df123795faa1b32ddb5e80ae7493cc7e64a6508a9edc21242a352f70\"", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "\"e21c10f436977c155cb2612b9a13066a568a4c8b1e82c1ca3b0218bd50064771\"", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; param=squirrel-girl-preview; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4974", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "26", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "13", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -44,10 +45,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF36:1172D:10107B5:10737FF:625178D2" + "X-GitHub-Request-Id": "AF6E:0C3E:33A10C:351889:62B1FD5D" } }, - "uuid": "0e508b89-abf3-440e-b24e-26f7b2d76c84", + "uuid": "6148fd96-101d-45af-984a-53407454b15c", "persistent": true, "insertionIndex": 9 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions_158534106-11.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855255-18.json similarity index 54% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions_158534106-11.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855255-18.json index 88deaf8afb..5ca5dfc6b5 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions_158534106-11.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855255-18.json @@ -1,8 +1,8 @@ { - "id": "b155959e-9d88-4005-8b62-0b5bed5f472b", - "name": "repos_hub4j-test-org_github-api_pulls_comments_846624633_reactions_158534106", + "id": "9bd41cb3-3253-4048-b7a2-1af59a2e7f3e", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855255", "request": { - "url": "/repos/hub4j-test-org/github-api/pulls/comments/846624633/reactions/158534106", + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions/170855255", "method": "DELETE", "headers": { "Accept": { @@ -14,14 +14,15 @@ "status": 204, "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:15 GMT", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "Date": "Tue, 21 Jun 2022 17:18:27 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4972", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "28", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "22", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -30,10 +31,10 @@ "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", "Vary": "Accept-Encoding, Accept, X-Requested-With", - "X-GitHub-Request-Id": "BF3C:AE8F:16D6665:1744FC2:625178D2" + "X-GitHub-Request-Id": "AF80:F6CA:5C7943:5E384F:62B1FD62" } }, - "uuid": "b155959e-9d88-4005-8b62-0b5bed5f472b", + "uuid": "9bd41cb3-3253-4048-b7a2-1af59a2e7f3e", "persistent": true, - "insertionIndex": 11 + "insertionIndex": 18 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855273-22.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855273-22.json new file mode 100644 index 0000000000..d2e0832189 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855273-22.json @@ -0,0 +1,40 @@ +{ + "id": "8283bae4-a7cb-47db-825f-32c28f9e3405", + "name": "repos_hub4j-test-org_github-api_pulls_comments_902875759_reactions_170855273", + "request": { + "url": "/repos/hub4j-test-org/github-api/pulls/comments/902875759/reactions/170855273", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:29 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "26", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "AF88:13948:352972:369BE1:62B1FD65" + } + }, + "uuid": "8283bae4-a7cb-47db-825f-32c28f9e3405", + "persistent": true, + "insertionIndex": 22 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_gsmet-7.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1.json similarity index 57% rename from src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_gsmet-7.json rename to src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1.json index 1ee128743a..ab85673cfe 100644 --- a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_gsmet-7.json +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/user-1.json @@ -1,8 +1,8 @@ { - "id": "fbbefaa4-e379-4bf4-8e00-98075d7733a5", - "name": "users_gsmet", + "id": "3609dba6-8516-4729-b4f3-09a0d352e3aa", + "name": "user", "request": { - "url": "/users/gsmet", + "url": "/user", "method": "GET", "headers": { "Accept": { @@ -12,25 +12,26 @@ }, "response": { "status": 200, - "bodyFileName": "users_gsmet-7.json", + "bodyFileName": "user-1.json", "headers": { "Server": "GitHub.com", - "Date": "Sat, 09 Apr 2022 12:15:14 GMT", + "Date": "Tue, 21 Jun 2022 17:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"605a6e2d9d7f031745f48efc2d00aca72a7f359a6b0da5b1722467b9cf322aa9\"", - "Last-Modified": "Wed, 06 Apr 2022 15:07:12 GMT", - "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user, workflow, write:discussion", + "ETag": "W/\"c08249a37ca4953ffb58ac5b74889c6ce74c4d10ed91dd199fa45e1b93196eef\"", + "Last-Modified": "Sun, 19 Jun 2022 00:21:42 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4976", - "X-RateLimit-Reset": "1649510049", - "X-RateLimit-Used": "24", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "1", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -38,10 +39,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "BF32:6F18:1774A3E:17E56CF:625178D2" + "X-GitHub-Request-Id": "AF5C:10EEE:C39D6:D5504:62B1FD55" } }, - "uuid": "fbbefaa4-e379-4bf4-8e00-98075d7733a5", + "uuid": "3609dba6-8516-4729-b4f3-09a0d352e3aa", "persistent": true, - "insertionIndex": 7 + "insertionIndex": 1 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_kisaga-8.json b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_kisaga-8.json new file mode 100644 index 0000000000..14aba63e3d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHPullRequestTest/wiremock/pullRequestReviewComments/mappings/users_kisaga-8.json @@ -0,0 +1,48 @@ +{ + "id": "0892a1ba-a9f8-44fe-a199-1c8d3274548f", + "name": "users_kisaga", + "request": { + "url": "/users/kisaga", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "users_kisaga-8.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 21 Jun 2022 17:18:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"c08249a37ca4953ffb58ac5b74889c6ce74c4d10ed91dd199fa45e1b93196eef\"", + "Last-Modified": "Sun, 19 Jun 2022 00:21:42 GMT", + "X-OAuth-Scopes": "admin:gpg_key, notifications, repo, user, workflow", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-07-17 15:27:30 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1655835493", + "X-RateLimit-Used": "12", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "AF6C:21C5:567FD6:58294B:62B1FD5C" + } + }, + "uuid": "0892a1ba-a9f8-44fe-a199-1c8d3274548f", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease-2.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease-2.json new file mode 100644 index 0000000000..36e2ffc89b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease-2.json @@ -0,0 +1,149 @@ +{ + "id": 653172669, + "node_id": "R_kgDOJu6fvQ", + "name": "temp-testMakeLatestRelease", + "full_name": "hub4j-test-org/temp-testMakeLatestRelease", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease", + "description": "A test repository for testing the github-api project: temp-testMakeLatestRelease", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease", + "forks_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/deployments", + "created_at": "2023-06-13T14:34:30Z", + "updated_at": "2023-06-13T14:34:31Z", + "pushed_at": "2023-06-13T14:34:31Z", + "git_url": "git://github.com/hub4j-test-org/temp-testMakeLatestRelease.git", + "ssh_url": "git@github.com:hub4j-test-org/temp-testMakeLatestRelease.git", + "clone_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease.git", + "svn_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease", + "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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json new file mode 100644 index 0000000000..2be2b7d2d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag1", + "id": 108387464, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyI", + "tag_name": "tag1", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:35Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag1", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag1", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json new file mode 100644 index 0000000000..6de6bb0411 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag2", + "id": 108387467, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyL", + "tag_name": "tag2", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:36Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag2", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag2", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json new file mode 100644 index 0000000000..6de6bb0411 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag2", + "id": 108387467, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyL", + "tag_name": "tag2", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:36Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag2", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag2", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json new file mode 100644 index 0000000000..2be2b7d2d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag1", + "id": 108387464, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyI", + "tag_name": "tag1", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:35Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag1", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag1", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json new file mode 100644 index 0000000000..2be2b7d2d7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag1", + "id": 108387464, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyI", + "tag_name": "tag1", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:35Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag1", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag1", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json new file mode 100644 index 0000000000..6de6bb0411 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json @@ -0,0 +1,39 @@ +{ + "url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467", + "assets_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets", + "upload_url": "https://uploads.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467/assets{?name,label}", + "html_url": "https://github.com/hub4j-test-org/temp-testMakeLatestRelease/releases/tag/tag2", + "id": 108387467, + "author": { + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOJu6fvc4GddyL", + "tag_name": "tag2", + "target_commitish": "main", + "name": null, + "draft": false, + "prerelease": false, + "created_at": "2023-06-13T14:34:31Z", + "published_at": "2023-06-13T14:34:36Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/tarball/tag2", + "zipball_url": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/zipball/tag2", + "body": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/user-1.json new file mode 100644 index 0000000000..e1eaa24a8e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "nikclayton", + "id": 773100, + "node_id": "MDQ6VXNlcjc3MzEwMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/773100?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nikclayton", + "html_url": "https://github.com/nikclayton", + "followers_url": "https://api.github.com/users/nikclayton/followers", + "following_url": "https://api.github.com/users/nikclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/nikclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikclayton/subscriptions", + "organizations_url": "https://api.github.com/users/nikclayton/orgs", + "repos_url": "https://api.github.com/users/nikclayton/repos", + "events_url": "https://api.github.com/users/nikclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikclayton/received_events", + "type": "User", + "site_admin": false, + "name": "Nik Clayton", + "company": null, + "blog": "", + "location": null, + "email": "nik@ngo.org.uk", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 52, + "public_gists": 9, + "followers": 58, + "following": 0, + "created_at": "2011-05-06T22:32:25Z", + "updated_at": "2023-04-25T14:38:07Z", + "private_gists": 13, + "total_private_repos": 3, + "owned_private_repos": 3, + "disk_usage": 197328, + "collaborators": 2, + "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/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease-2.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease-2.json new file mode 100644 index 0000000000..a258c8721b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease-2.json @@ -0,0 +1,50 @@ +{ + "id": "975a78ad-8d5b-4779-b0df-2d3bdc8af506", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e075e8a0e6f56bcfad808330f21f6a17ff251596d31c97b47a4e6d68d5a5dfab\"", + "Last-Modified": "Tue, 13 Jun 2023 14:34:31 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4710", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "290", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB44:75B7:69B9FA:6A7995:64887E7B" + } + }, + "uuid": "975a78ad-8d5b-4779-b0df-2d3bdc8af506", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json new file mode 100644 index 0000000000..a0433b9a9c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json @@ -0,0 +1,57 @@ +{ + "id": "1d1bb51c-eea4-41f1-8688-73a017c24f86", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"tag_name\":\"tag1\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"d5ac9bb181b858366436dd34d116f963ae9bc0ce6e19476373562abd38725d21\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4709", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "291", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB4A:D0AA:691DDA:69DD6E:64887E7B", + "Location": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464" + } + }, + "uuid": "1d1bb51c-eea4-41f1-8688-73a017c24f86", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json new file mode 100644 index 0000000000..7733d81043 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json @@ -0,0 +1,57 @@ +{ + "id": "40acb196-2f69-469c-b5ef-890978e5e727", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"make_latest\":\"false\",\"tag_name\":\"tag2\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases-5.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"d0b254764dcfb406bb379023e4ce334b34c3be308cc4e9fb0f8ca97c106c81e1\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4707", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "293", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB66:75B7:69BEC8:6A7E43:64887E7C", + "Location": "https://api.github.com/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467" + } + }, + "uuid": "40acb196-2f69-469c-b5ef-890978e5e727", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387464-9.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387464-9.json new file mode 100644 index 0000000000..2fcc3a4331 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387464-9.json @@ -0,0 +1,42 @@ +{ + "id": "18966b56-eb0f-4508-9a2c-0ac9fa7a2192", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387464", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387464", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:38 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4703", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "297", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "DB24:03EE:7A227D:7AE621:64887E7D" + } + }, + "uuid": "18966b56-eb0f-4508-9a2c-0ac9fa7a2192", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-10.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-10.json new file mode 100644 index 0000000000..cc61ce22e8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-10.json @@ -0,0 +1,42 @@ +{ + "id": "458693ea-7e4f-44a1-b1e7-58791c12fc46", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:38 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4702", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "298", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "DB32:BD5B:6818E9:68D891:64887E7E" + } + }, + "uuid": "458693ea-7e4f-44a1-b1e7-58791c12fc46", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json new file mode 100644 index 0000000000..0d2ff1c1e5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json @@ -0,0 +1,56 @@ +{ + "id": "d854c1de-4247-4fd1-b0f4-e06c7eb30473", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/108387467", + "method": "PATCH", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"make_latest\":\"true\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_108387467-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d0b254764dcfb406bb379023e4ce334b34c3be308cc4e9fb0f8ca97c106c81e1\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "295", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB1E:D0AA:6924A6:69E456:64887E7D" + } + }, + "uuid": "d854c1de-4247-4fd1-b0f4-e06c7eb30473", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json new file mode 100644 index 0000000000..f985691054 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json @@ -0,0 +1,53 @@ +{ + "id": "f7b8616b-6c05-4748-b5db-e4dc12c0cbd0", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/latest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d5ac9bb181b858366436dd34d116f963ae9bc0ce6e19476373562abd38725d21\"", + "Last-Modified": "Tue, 13 Jun 2023 14:34:35 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4708", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "292", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB56:EE24:759179:7654C2:64887E7C" + } + }, + "uuid": "f7b8616b-6c05-4748-b5db-e4dc12c0cbd0", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json new file mode 100644 index 0000000000..d0bea9ddcf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json @@ -0,0 +1,53 @@ +{ + "id": "757eb14d-ea05-40f0-a984-792a5e1cb5da", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/latest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-6.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d5ac9bb181b858366436dd34d116f963ae9bc0ce6e19476373562abd38725d21\"", + "Last-Modified": "Tue, 13 Jun 2023 14:34:35 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4706", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "294", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB14:6902:6E2446:6EE45B:64887E7C" + } + }, + "uuid": "757eb14d-ea05-40f0-a984-792a5e1cb5da", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest-2", + "newScenarioState": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest-3", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json new file mode 100644 index 0000000000..4c2eef0b00 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json @@ -0,0 +1,52 @@ +{ + "id": "1a79688b-bb2e-468e-b906-f959c71032b1", + "name": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest", + "request": { + "url": "/repos/hub4j-test-org/temp-testMakeLatestRelease/releases/latest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_temp-testmakelatestrelease_releases_latest-8.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d0b254764dcfb406bb379023e4ce334b34c3be308cc4e9fb0f8ca97c106c81e1\"", + "Last-Modified": "Tue, 13 Jun 2023 14:34:36 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4704", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "296", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB20:D0AA:692665:69E609:64887E7D" + } + }, + "uuid": "1a79688b-bb2e-468e-b906-f959c71032b1", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-temp-testMakeLatestRelease-releases-latest-3", + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/user-1.json new file mode 100644 index 0000000000..3bf6c69f0f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHReleaseTest/wiremock/testMakeLatestRelease/mappings/user-1.json @@ -0,0 +1,50 @@ +{ + "id": "ff651c02-8c57-4862-acb1-03892fc6b7fe", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 13 Jun 2023 14:34:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"dd2e275ef99f6453f19e8f9bf7818310fb43eeb787182f2ec87fe1940f665758\"", + "Last-Modified": "Tue, 25 Apr 2023 14:38:07 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1686668725", + "X-RateLimit-Used": "285", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "DB1C:75B7:69A310:6A6264:64887E75" + } + }, + "uuid": "ff651c02-8c57-4862-acb1-03892fc6b7fe", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue-2.json new file mode 100644 index 0000000000..fc2257de58 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue-2.json @@ -0,0 +1,141 @@ +{ + "id": 649600716, + "node_id": "R_kgDOJrgezA", + "name": "maintain-permission-issue", + "full_name": "hub4j-test-org/maintain-permission-issue", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/maintain-permission-issue", + "description": "A repository to demo the maintain permission issue", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue", + "forks_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/maintain-permission-issue/deployments", + "created_at": "2023-06-05T08:29:48Z", + "updated_at": "2023-06-05T08:29:48Z", + "pushed_at": "2023-06-05T08:29:48Z", + "git_url": "git://github.com/hub4j-test-org/maintain-permission-issue.git", + "ssh_url": "git@github.com:hub4j-test-org/maintain-permission-issue.git", + "clone_url": "https://github.com/hub4j-test-org/maintain-permission-issue.git", + "svn_url": "https://github.com/hub4j-test-org/maintain-permission-issue", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ACLMQO62GXXZCCUB5ECCP3DEPWSHO", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 21 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json new file mode 100644 index 0000000000..e7217fdbe9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json @@ -0,0 +1,32 @@ +{ + "permission": "maintain", + "user": { + "login": "alecharp", + "id": 985955, + "node_id": "MDQ6VXNlcjk4NTk1NQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/985955?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alecharp", + "html_url": "https://github.com/alecharp", + "followers_url": "https://api.github.com/users/alecharp/followers", + "following_url": "https://api.github.com/users/alecharp/following{/other_user}", + "gists_url": "https://api.github.com/users/alecharp/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alecharp/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alecharp/subscriptions", + "organizations_url": "https://api.github.com/users/alecharp/orgs", + "repos_url": "https://api.github.com/users/alecharp/repos", + "events_url": "https://api.github.com/users/alecharp/events{/privacy}", + "received_events_url": "https://api.github.com/users/alecharp/received_events", + "type": "User", + "site_admin": false, + "permissions": { + "admin": false, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "role_name": "maintain" + }, + "role_name": "maintain" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/user-1.json new file mode 100644 index 0000000000..e80cb1cac4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "PierreBtz", + "id": 9881659, + "node_id": "MDQ6VXNlcjk4ODE2NTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9881659?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PierreBtz", + "html_url": "https://github.com/PierreBtz", + "followers_url": "https://api.github.com/users/PierreBtz/followers", + "following_url": "https://api.github.com/users/PierreBtz/following{/other_user}", + "gists_url": "https://api.github.com/users/PierreBtz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PierreBtz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PierreBtz/subscriptions", + "organizations_url": "https://api.github.com/users/PierreBtz/orgs", + "repos_url": "https://api.github.com/users/PierreBtz/repos", + "events_url": "https://api.github.com/users/PierreBtz/events{/privacy}", + "received_events_url": "https://api.github.com/users/PierreBtz/received_events", + "type": "User", + "site_admin": false, + "name": "Pierre Beitz", + "company": "@cloudbees ", + "blog": "", + "location": null, + "email": "pibeitz@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 89, + "public_gists": 7, + "followers": 12, + "following": 11, + "created_at": "2014-11-21T10:26:34Z", + "updated_at": "2023-05-31T07:47:04Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue-2.json new file mode 100644 index 0000000000..24c3955dbe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue-2.json @@ -0,0 +1,51 @@ +{ + "id": "1c85c1aa-c054-4ee0-88ac-7a1f093140ce", + "name": "repos_hub4j-test-org_maintain-permission-issue", + "request": { + "url": "/repos/hub4j-test-org/maintain-permission-issue", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_maintain-permission-issue-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 08:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"aff085d3b49db6fbe3ef8f48e6ca4fe314d68abfdbd7b6e866c4122a3eb0e611\"", + "Last-Modified": "Mon, 05 Jun 2023 08:29:48 GMT", + "X-OAuth-Scopes": "admin:org, repo", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-07-05 08:21:35 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1685955508", + "X-RateLimit-Used": "47", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C925:6C90:53F8419:AC45847:647DA34A" + } + }, + "uuid": "1c85c1aa-c054-4ee0-88ac-7a1f093140ce", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json new file mode 100644 index 0000000000..2beac1e0a2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json @@ -0,0 +1,50 @@ +{ + "id": "003b11c3-6e12-4da6-a439-02095d7d1328", + "name": "repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission", + "request": { + "url": "/repos/hub4j-test-org/maintain-permission-issue/collaborators/alecharp/permission", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_maintain-permission-issue_collaborators_alecharp_permission-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 08:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e2dc20577322b0be94a78538a4d6c166b39c016f02cb4db80cb63ba33bbf8afb\"", + "X-OAuth-Scopes": "admin:org, repo", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-07-05 08:21:35 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1685955508", + "X-RateLimit-Used": "48", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C926:0FAC:4E05B5D:A05855E:647DA34B" + } + }, + "uuid": "003b11c3-6e12-4da6-a439-02095d7d1328", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/user-1.json new file mode 100644 index 0000000000..8545f77db0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/cannotRetrievePermissionMaintainUser/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "3316e123-fb79-4f7c-b41c-4eaa2840d133", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 08:56:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"316d532924f9884c6ce327f8dae23b9a39885cb124f317758c5092b9c829fff2\"", + "Last-Modified": "Wed, 31 May 2023 07:47:04 GMT", + "X-OAuth-Scopes": "admin:org, repo", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-07-05 08:21:35 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1685955508", + "X-RateLimit-Used": "45", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "C923:9715:4F96DE0:A3824FD:647DA349" + } + }, + "uuid": "3316e123-fb79-4f7c-b41c-4eaa2840d133", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/orgs_hub4j-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/orgs_hub4j-1.json new file mode 100644 index 0000000000..7af7035707 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/orgs_hub4j-1.json @@ -0,0 +1,25 @@ +{ + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "created_at": "2019-09-04T18:12:34Z", + "description": null, + "events_url": "https://api.github.com/orgs/hub4j/events", + "followers": 0, + "following": 0, + "has_organization_projects": true, + "has_repository_projects": true, + "hooks_url": "https://api.github.com/orgs/hub4j/hooks", + "html_url": "https://github.com/hub4j", + "id": 54909825, + "is_verified": false, + "issues_url": "https://api.github.com/orgs/hub4j/issues", + "login": "hub4j", + "members_url": "https://api.github.com/orgs/hub4j/members{/member}", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "public_gists": 0, + "public_members_url": "https://api.github.com/orgs/hub4j/public_members{/member}", + "public_repos": 1, + "repos_url": "https://api.github.com/orgs/hub4j/repos", + "type": "Organization", + "updated_at": "2020-05-08T21:26:19Z", + "url": "https://api.github.com/orgs/hub4j" +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..eadccf842e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,137 @@ +{ + "allow_forking": true, + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "archived": false, + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "clone_url": "https://github.com/hub4j/github-api.git", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "created_at": "2010-04-19T04:13:03Z", + "default_branch": "main", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "description": "Java API for GitHub", + "disabled": false, + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "fork": false, + "forks": 651, + "forks_count": 651, + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "full_name": "hub4j/github-api", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_url": "git://github.com/hub4j/github-api.git", + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_pages": true, + "has_projects": true, + "has_wiki": true, + "homepage": "https://github-api.kohsuke.org/", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "html_url": "https://github.com/hub4j/github-api", + "id": 617210, + "is_template": false, + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "language": "Java", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "license": { + "key": "mit", + "name": "MIT License", + "node_id": "MDc6TGljZW5zZTEz", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit" + }, + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "mirror_url": null, + "name": "github-api", + "network_count": 651, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "open_issues": 141, + "open_issues_count": 141, + "organization": { + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "gravatar_id": "", + "html_url": "https://github.com/hub4j", + "id": 54909825, + "login": "hub4j", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "repos_url": "https://api.github.com/users/hub4j/repos", + "site_admin": false, + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "type": "Organization", + "url": "https://api.github.com/users/hub4j" + }, + "owner": { + "avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "gravatar_id": "", + "html_url": "https://github.com/hub4j", + "id": 54909825, + "login": "hub4j", + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "repos_url": "https://api.github.com/users/hub4j/repos", + "site_admin": false, + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "type": "Organization", + "url": "https://api.github.com/users/hub4j" + }, + "private": false, + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "pushed_at": "2023-02-01T14:18:09Z", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "size": 40829, + "ssh_url": "git@github.com:hub4j/github-api.git", + "stargazers_count": 972, + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "subscribers_count": 48, + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "svn_url": "https://github.com/hub4j/github-api", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "temp_clone_token": null, + "topics": [ + "api", + "client-library", + "github", + "github-api", + "github-api-v3", + "java", + "java-api" + ], + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "updated_at": "2023-01-30T18:28:31Z", + "url": "https://api.github.com/repos/hub4j/github-api", + "visibility": "public", + "watchers": 972, + "watchers_count": 972, + "web_commit_signoff_required": false +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json new file mode 100644 index 0000000000..d65eef6cce --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/__files/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json @@ -0,0 +1,105 @@ +{ + "total_count": 1, + "check_runs": [ + { + "id": 514982790, + "node_id": "MDg6Q2hlY2tSdW41MTQ5ODI3OTA=", + "head_sha": "78b9ff49d47daaa158eb373c4e2e040f739df8b9", + "external_id": "5b9ee24e-a4fa-5b0f-9fef-471905f84b41", + "url": "https://api.github.com/repos/hub4j/github-api/check-runs/514982790", + "html_url": "https://github.com/hub4j/github-api/runs/514982790", + "details_url": "https://github.com/hub4j/github-api/runs/514982790", + "status": "completed", + "conclusion": "success", + "started_at": "2020-03-17T21:37:30Z", + "completed_at": "2020-03-17T21:41:01Z", + "output": { + "title": null, + "summary": null, + "text": null, + "annotations_count": 0, + "annotations_url": "https://api.github.com/repos/hub4j/github-api/check-runs/514982790/annotations" + }, + "name": "build-only (Java 17)", + "check_suite": { + "id": 528275399 + }, + "app": { + "id": 15368, + "slug": "github-actions", + "node_id": "MDM6QXBwMTUzNjg=", + "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 + }, + "name": "GitHub Actions", + "description": "Automate your workflow from idea to production", + "external_url": "https://help.github.com/en/actions", + "html_url": "https://github.com/apps/github-actions", + "created_at": "2018-07-30T09:30:17Z", + "updated_at": "2019-12-10T19:04:12Z", + "permissions": { + "actions": "write", + "checks": "write", + "contents": "write", + "deployments": "write", + "issues": "write", + "metadata": "read", + "packages": "write", + "pages": "write", + "pull_requests": "write", + "repository_hooks": "write", + "repository_projects": "write", + "statuses": "write", + "vulnerability_alerts": "read" + }, + "events": [ + "check_run", + "check_suite", + "create", + "delete", + "deployment", + "deployment_status", + "fork", + "gollum", + "issues", + "issue_comment", + "label", + "milestone", + "page_build", + "project", + "project_card", + "project_column", + "public", + "pull_request", + "pull_request_review", + "pull_request_review_comment", + "push", + "registry_package", + "release", + "repository", + "repository_dispatch", + "status", + "watch" + ] + }, + "pull_requests": [] + } + ] +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/orgs_hub4j-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/orgs_hub4j-1.json new file mode 100644 index 0000000000..feb2a3c85d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/orgs_hub4j-1.json @@ -0,0 +1,44 @@ +{ + "id": "5d8b3f90-4fb5-4321-b979-b06127d19224", + "name": "orgs_hub4j", + "request": { + "url": "/orgs/hub4j", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-1.json", + "headers": { + "Cache-Control": "public, max-age=60, s-maxage=60", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2023 14:50:02 GMT", + "ETag": "W/\"0f5afebb9a43d2439789b5ee913e4b91dd2ee711e15a942b5a85dc8d6ae18dc9\"", + "Last-Modified": "Fri, 08 May 2020 21:26:19 GMT", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-GitHub-Request-Id": "CA71:D7EC:186E8A:18D72D:63DA7C19", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "55", + "X-RateLimit-Reset": "1675263481", + "X-XSS-Protection": "0" + } + }, + "uuid": "5d8b3f90-4fb5-4321-b979-b06127d19224", + "persistent": true, + "insertionIndex": 1 +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..4389fe339e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,44 @@ +{ + "id": "71c75ce1-402c-4835-8841-f1707d28d88d", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.json", + "headers": { + "Cache-Control": "public, max-age=60, s-maxage=60", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2023 15:27:59 GMT", + "ETag": "W/\"27c60bc0ab8216c908ac99475a2d77aa39d77e3cbdf04e98f52df98e20d7e7d2\"", + "Last-Modified": "Mon, 30 Jan 2023 18:28:31 GMT", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-GitHub-Request-Id": "CDC0:D7EC:3FD768:40DB97:63DA84FF", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "57", + "X-RateLimit-Reset": "1675267094", + "X-XSS-Protection": "0" + } + }, + "uuid": "71c75ce1-402c-4835-8841-f1707d28d88d", + "persistent": true, + "insertionIndex": 2 +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json new file mode 100644 index 0000000000..0abd669562 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/getCheckRunsWithParams/mappings/repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json @@ -0,0 +1,46 @@ +{ + "id": "6f217f80-e2fa-4a54-b6ab-b110055d776a", + "name": "repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs", + "request": { + "url": "/repos/hub4j/github-api/commits/54d60fbb53b4efa19f3081417bfb6a1de30c55e4/check-runs?check_name=build-only+%28Java+17%29", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.antiope-preview+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_54d60fbb53b4efa19f3081417bfb6a1de30c55e4_check-runs-3.json", + "headers": { + "Cache-Control": "public, max-age=60, s-maxage=60", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2023 15:33:02 GMT", + "ETag": "W/\"76cd89479af94fc294b78ddf876c317b67b20fd89ba6543f5464caa19cf0aa75\"", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-GitHub-Request-Id": "D57A:94E6:41F9B6:4310EC:63DA862D", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "55", + "X-RateLimit-Reset": "1675267093", + "X-XSS-Protection": "0" + } + }, + "uuid": "6f217f80-e2fa-4a54-b6ab-b110055d776a", + "persistent": true, + "scenarioName": "scenario-1-repos-github-api-github-api-commits-54d60fbb53b4efa19f3081417bfb6a1de30c55e4-check-runs", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-github-api-github-api-commits-54d60fbb53b4efa19f3081417bfb6a1de30c55e4-check-runs-2", + "insertionIndex": 3 +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/orgs_hub4j-test-org.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/orgs_hub4j-test-org.json new file mode 100644 index 0000000000..54173e5a10 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/orgs_hub4j-test-org.json @@ -0,0 +1,41 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-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/hub4j-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": 10, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api-starred-users.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api-starred-users.json new file mode 100644 index 0000000000..1155b5f6c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api-starred-users.json @@ -0,0 +1,25 @@ +[ + { + "starred_at": "2010-04-19T04:13:03Z", + "user": { + "login": "hub4j-test-org", + "id": 9799, + "node_id": "MDQ6VXNlcjk3OTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api.json new file mode 100644 index 0000000000..312a26362c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/repos_hub4j-test-org_github-api.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "Resetting", + "fork": true, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-11-07T22:27:11Z", + "pushed_at": "2019-10-21T22:34:49Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-12-04T10:56:12Z", + "pushed_at": "2019-12-04T14:15:10Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 17060, + "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": 443, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 56, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 443, + "open_issues": 56, + "watchers": 585, + "default_branch": "main" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-12-04T10:56:12Z", + "pushed_at": "2019-12-04T14:15:10Z", + "git_url": "git://github.com/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 17060, + "stargazers_count": 585, + "watchers_count": 585, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 443, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 56, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 443, + "open_issues": 56, + "watchers": 585, + "default_branch": "main" + }, + "network_count": 443, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/user.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/user.json new file mode 100644 index 0000000000..68c8dbe653 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/__files/user.json @@ -0,0 +1,33 @@ +{ + "login": "hub4j-test-org", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false, + "name": "Liam Newman", + "company": "Cloudbees, Inc.", + "blog": "", + "location": "Seattle, WA, USA", + "email": "hub4j-test-org@gmail.com", + "hireable": null, + "bio": "https://twitter.com/hub4j-test-org", + "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/starTest/mappings/orgs_hub4j-test-org.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/orgs_hub4j-test-org.json new file mode 100644 index 0000000000..0c9eb0f7fa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/orgs_hub4j-test-org.json @@ -0,0 +1,48 @@ +{ + "id": "d319a11c-9dce-4642-a18a-175f6cdbde6d", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org.json", + "headers": { + "Date": "Wed, 04 Dec 2019 17:07:18 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": "1575482837", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"1de516fab0228945881043c1bc527c88\"", + "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": "A585:3D530:D2A1AF3:FAB1EAD:5DE7E7C5" + } + }, + "uuid": "d319a11c-9dce-4642-a18a-175f6cdbde6d", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-starred.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-starred.json new file mode 100644 index 0000000000..e869cd0c6e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-starred.json @@ -0,0 +1,16 @@ +{ + "id": "4c1e8c73-a989-4625-8582-5fa6a2f88f4d", + "name": "repos_hub4j-test-org_github-api-starred", + "request": { + "url": "/user/starred/hub4j-test-org/github-api", + "method": "PUT", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-unstarred.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-unstarred.json new file mode 100644 index 0000000000..86308c991c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api-unstarred.json @@ -0,0 +1,16 @@ +{ + "id": "4c1e8c73-a989-4625-8582-5fa6a2f88f4d", + "name": "repos_hub4j-test-org_github-api-starred", + "request": { + "url": "/user/starred/hub4j-test-org/github-api", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api.json new file mode 100644 index 0000000000..eebaac8b76 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api.json @@ -0,0 +1,48 @@ +{ + "id": "4c1e8c73-a989-4625-8582-5fa6a2f88f4d", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api.json", + "headers": { + "Date": "Wed, 04 Dec 2019 17:07:19 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": "1575482837", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"bd13c31938217e87f61c9a08bd0fe01d\"", + "Last-Modified": "Thu, 07 Nov 2019 22:27:11 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": "A585:3D530:D2A1B48:FAB201E:5DE7E7C6" + } + }, + "uuid": "4c1e8c73-a989-4625-8582-5fa6a2f88f4d", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_starred-users.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_starred-users.json new file mode 100644 index 0000000000..3b6cf79f81 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_starred-users.json @@ -0,0 +1,47 @@ +{ + "id": "a8dd4fb9-0ec7-4a93-b642-193312795e64", + "name": "repos_hub4j-test-org_github-api_stargazers", + "request": { + "url": "/repos/hub4j-test-org/github-api/stargazers", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3.star+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-starred-users.json", + "headers": { + "Date": "Mon, 25 Jan 2021 01:00:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With", + "Accept-Encoding" + ], + "ETag": "\"c0ae8d4e2de626e3c17a734d124e620264c64895ab868c0914ace984cce8cef8\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=star; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1611538431", + "x-ratelimit-used": "57", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDB:9997:871A4E:9D45ED:600E1833" + } + }, + "uuid": "a8dd4fb9-0ec7-4a93-b642-193312795e64", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_unstarred-users.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_unstarred-users.json new file mode 100644 index 0000000000..67eef7a242 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/repos_hub4j-test-org_github-api_unstarred-users.json @@ -0,0 +1,47 @@ +{ + "id": "a8dd4fb9-0ec7-4a93-b642-193312795e64", + "name": "repos_hub4j-test-org_github-api_stargazers", + "request": { + "url": "/repos/hub4j-test-org/github-api/stargazers", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "[]", + "headers": { + "Date": "Mon, 25 Jan 2021 01:00:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With", + "Accept-Encoding" + ], + "ETag": "\"c0ae8d4e2de626e3c17a734d124e620264c64895ab868c0914ace984cce8cef8\"", + "X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=star; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1611538431", + "x-ratelimit-used": "57", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FEDB:9997:871A4E:9D45ED:600E1833" + } + }, + "uuid": "a8dd4fb9-0ec7-4a93-b642-193312795e64", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/user.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/user.json new file mode 100644 index 0000000000..1a514ad25a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/starTest/mappings/user.json @@ -0,0 +1,48 @@ +{ + "id": "7f6e9a01-5bfa-4f72-9947-07df902f56c3", + "name": "user", + "request": { + "url": "/users/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user.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/testCreateRepoActionVariable/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..25c602bdf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,58 @@ +{ + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 9, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2020-01-03T09:09:41Z", + "updated_at": "2023-05-15T08:11:52Z", + "type": "Organization", + "total_private_repos": 1630, + "owned_private_repos": 1671, + "private_gists": 0, + "disk_usage": 4872624, + "collaborators": 75, + "billing_email": "garridobarrera@gmail.com", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "members_can_create_public_repositories": false, + "members_can_create_private_repositories": false, + "members_can_create_internal_repositories": false, + "members_can_create_pages": true, + "members_can_fork_private_repositories": false, + "web_commit_signoff_required": false, + "members_can_create_public_pages": true, + "members_can_create_private_pages": true, + "plan": { + "name": "enterprise", + "space": 976562499, + "private_repos": 999999, + "filled_seats": 5153, + "seats": 5664 + }, + "advanced_security_enabled_for_new_repositories": false, + "dependabot_alerts_enabled_for_new_repositories": false, + "dependabot_security_updates_enabled_for_new_repositories": false, + "dependency_graph_enabled_for_new_repositories": false, + "secret_scanning_enabled_for_new_repositories": false, + "secret_scanning_push_protection_enabled_for_new_repositories": false, + "secret_scanning_push_protection_custom_link_enabled": false, + "secret_scanning_push_protection_custom_link": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..7aae05a540 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,143 @@ +{ + "id": 649619181, + "node_id": "R_kgDOJrhm7Q", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "github-api", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2023-06-05T09:18:13Z", + "updated_at": "2023-06-05T09:18:21Z", + "pushed_at": "2023-06-05T09:18:39Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-test-org/github-api", + "homepage": null, + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "topiclanguage" + ], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABVSGFWK3NHJBUL36IBMZGDEPX2UC", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-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/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/user-1.json new file mode 100644 index 0000000000..08775b9cda --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "garridobarrera", + "id": 7021334, + "node_id": "MDQ6VXNlcjcwMjEzMzQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7021334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/garridobarrera", + "html_url": "https://github.com/garridobarrera", + "followers_url": "https://api.github.com/users/garridobarrera/followers", + "following_url": "https://api.github.com/users/garridobarrera/following{/other_user}", + "gists_url": "https://api.github.com/users/garridobarrera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/garridobarrera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/garridobarrera/subscriptions", + "organizations_url": "https://api.github.com/users/garridobarrera/orgs", + "repos_url": "https://api.github.com/users/garridobarrera/repos", + "events_url": "https://api.github.com/users/garridobarrera/events{/privacy}", + "received_events_url": "https://api.github.com/users/garridobarrera/received_events", + "type": "User", + "site_admin": false, + "name": "José Manuel Garrido Barrera", + "company": "personal", + "blog": "", + "location": null, + "email": "garridobarrera@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 11, + "public_gists": 0, + "followers": 3, + "following": 3, + "created_at": "2014-03-21T10:37:00Z", + "updated_at": "2023-03-13T11:32:23Z", + "private_gists": 0, + "total_private_repos": 2, + "owned_private_repos": 2, + "disk_usage": 5935, + "collaborators": 1, + "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/testCreateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..f318bc0c90 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,50 @@ +{ + "id": "627a7493-f294-4a21-a6ef-088614dc0a2b", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:41:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"46a40cb19e416c1d2dce19a8db11c0f32801a98a0c629dfa70fd25358454e97d\"", + "Last-Modified": "Mon, 15 May 2023 08:11:52 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "92", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC83:0BAC:1A459532:1A85271D:647DF414" + } + }, + "uuid": "627a7493-f294-4a21-a6ef-088614dc0a2b", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..c053aae44b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,50 @@ +{ + "id": "587b0fb2-3a43-490f-87f3-9efbee755d6c", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:41:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ad2ec095079899332f528baec4441d362d0e6e5594b29ff93423e00ce1f5350b\"", + "Last-Modified": "Mon, 05 Jun 2023 09:18:21 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "93", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC84:10E3E:13C847C2:13FF891F:647DF415" + } + }, + "uuid": "587b0fb2-3a43-490f-87f3-9efbee755d6c", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables-4.json new file mode 100644 index 0000000000..f26779ad34 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables-4.json @@ -0,0 +1,56 @@ +{ + "id": "d4b69248-b4cb-4f60-a649-1c78718bc875", + "name": "repos_hub4j-test-org_github-api_actions_variables", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"mynewvalue\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "body": "{}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:41:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"6ea51f14160aa76cc240aa74ee94683a5648fedf8df8670960086d035ede1436\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "94", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC85:8B14:10B524FC:10E4767F:647DF415" + } + }, + "uuid": "d4b69248-b4cb-4f60-a649-1c78718bc875", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json new file mode 100644 index 0000000000..2fe5ed18ed --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json @@ -0,0 +1,49 @@ +{ + "id": "0deec025-c7ce-4a95-863a-58c8bf52fe42", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/mynewvariable", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"mynewvalue\",\"created_at\":\"2023-06-05T14:41:26Z\",\"updated_at\":\"2023-06-05T14:41:26Z\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:41:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ce64a844db6abf4edd4b3d80a8d2a1b698a7f6b39ddd029a703ff5e74688bf50\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "95", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC86:50C2:1565624E:15A1C963:647DF416" + } + }, + "uuid": "0deec025-c7ce-4a95-863a-58c8bf52fe42", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/user-1.json new file mode 100644 index 0000000000..b9946106e7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateRepoActionVariable/mappings/user-1.json @@ -0,0 +1,50 @@ +{ + "id": "9ea576f1-c6ba-427c-9cb8-4cbc343db0f7", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:41:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"72b451bc289e83190862630ea2754b45789caedda90121a9584bce45fe6830c8\"", + "Last-Modified": "Mon, 13 Mar 2023 11:32:23 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "90", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC81:0E02:19BD9C64:19FD2D1E:647DF413" + } + }, + "uuid": "9ea576f1-c6ba-427c-9cb8-4cbc343db0f7", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..ff5c615dfa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,65 @@ +{ + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "description": "Hub4j Test Org Description (this could be null or blank too)", + "name": "Hub4j Test Org Name (this could be null or blank too)", + "company": null, + "blog": "https://hub4j.url.io/could/be/null", + "location": "Hub4j Test Org Location (this could be null or blank too)", + "email": "hub4jtestorgemail@could.be.null.com", + "twitter_username": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 26, + "public_gists": 0, + "followers": 1, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2020-06-04T05:56:10Z", + "archived_at": null, + "type": "Organization", + "total_private_repos": 6, + "owned_private_repos": 6, + "private_gists": 0, + "disk_usage": 12007, + "collaborators": 1, + "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", + "members_can_create_public_repositories": false, + "members_can_create_private_repositories": false, + "members_can_create_internal_repositories": false, + "members_can_create_pages": true, + "members_can_fork_private_repositories": false, + "web_commit_signoff_required": false, + "members_can_create_public_pages": true, + "members_can_create_private_pages": true, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 10000, + "filled_seats": 46, + "seats": 3 + }, + "advanced_security_enabled_for_new_repositories": false, + "dependabot_alerts_enabled_for_new_repositories": false, + "dependabot_security_updates_enabled_for_new_repositories": false, + "dependency_graph_enabled_for_new_repositories": false, + "secret_scanning_enabled_for_new_repositories": false, + "secret_scanning_push_protection_enabled_for_new_repositories": false, + "secret_scanning_push_protection_custom_link_enabled": false, + "secret_scanning_push_protection_custom_link": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-3.json new file mode 100644 index 0000000000..41aefbcfbe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-3.json @@ -0,0 +1,140 @@ +{ + "id": 676879845, + "node_id": "R_kgDOKFhd5Q", + "name": "test-repo-visibility-public", + "full_name": "hub4j-test-org/test-repo-visibility-public", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/test-repo-visibility-public", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public", + "forks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/deployments", + "created_at": "2023-08-10T08:16:45Z", + "updated_at": "2023-08-10T08:16:46Z", + "pushed_at": "2023-08-10T08:16:46Z", + "git_url": "git://github.com/hub4j-test-org/test-repo-visibility-public.git", + "ssh_url": "git@github.com:hub4j-test-org/test-repo-visibility-public.git", + "clone_url": "https://github.com/hub4j-test-org/test-repo-visibility-public.git", + "svn_url": "https://github.com/hub4j-test-org/test-repo-visibility-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-6.json new file mode 100644 index 0000000000..41e08d8c90 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/orgs_hub4j-test-org_repos-6.json @@ -0,0 +1,140 @@ +{ + "id": 676879862, + "node_id": "R_kgDOKFhd9g", + "name": "test-repo-visibility-private", + "full_name": "hub4j-test-org/test-repo-visibility-private", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/test-repo-visibility-private", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private", + "forks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/deployments", + "created_at": "2023-08-10T08:16:48Z", + "updated_at": "2023-08-10T08:16:48Z", + "pushed_at": "2023-08-10T08:16:48Z", + "git_url": "git://github.com/hub4j-test-org/test-repo-visibility-private.git", + "ssh_url": "git@github.com:hub4j-test-org/test-repo-visibility-private.git", + "clone_url": "https://github.com/hub4j-test-org/test-repo-visibility-private.git", + "svn_url": "https://github.com/hub4j-test-org/test-repo-visibility-private", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-private-7.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-private-7.json new file mode 100644 index 0000000000..bb8cbae35d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-private-7.json @@ -0,0 +1,141 @@ +{ + "id": 676879862, + "node_id": "R_kgDOKFhd9g", + "name": "test-repo-visibility-private", + "full_name": "hub4j-test-org/test-repo-visibility-private", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/test-repo-visibility-private", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private", + "forks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private/deployments", + "created_at": "2023-08-10T08:16:48Z", + "updated_at": "2023-08-10T08:16:48Z", + "pushed_at": "2023-08-10T08:16:48Z", + "git_url": "git://github.com/hub4j-test-org/test-repo-visibility-private.git", + "ssh_url": "git@github.com:hub4j-test-org/test-repo-visibility-private.git", + "clone_url": "https://github.com/hub4j-test-org/test-repo-visibility-private.git", + "svn_url": "https://github.com/hub4j-test-org/test-repo-visibility-private", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABXKPQCKFTRVIO2CU2TP4TLE2SPB2", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "network_count": 0, + "subscribers_count": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-public-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-public-4.json new file mode 100644 index 0000000000..18bc5c5494 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/repos_hub4j-test-org_test-repo-visibility-public-4.json @@ -0,0 +1,152 @@ +{ + "id": 676879845, + "node_id": "R_kgDOKFhd5Q", + "name": "test-repo-visibility-public", + "full_name": "hub4j-test-org/test-repo-visibility-public", + "private": false, + "owner": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/test-repo-visibility-public", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public", + "forks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public/deployments", + "created_at": "2023-08-10T08:16:45Z", + "updated_at": "2023-08-10T08:16:46Z", + "pushed_at": "2023-08-10T08:16:46Z", + "git_url": "git://github.com/hub4j-test-org/test-repo-visibility-public.git", + "ssh_url": "git@github.com:hub4j-test-org/test-repo-visibility-public.git", + "clone_url": "https://github.com/hub4j-test-org/test-repo-visibility-public.git", + "svn_url": "https://github.com/hub4j-test-org/test-repo-visibility-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + }, + "dependabot_security_updates": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/user-1.json new file mode 100644 index 0000000000..21dc04da7c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false, + "name": "Daniel Baur", + "company": null, + "blog": "", + "location": "Ulm", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 50, + "public_gists": 0, + "followers": 7, + "following": 10, + "created_at": "2014-04-10T14:14:43Z", + "updated_at": "2023-07-28T11:30:28Z", + "private_gists": 3, + "total_private_repos": 13, + "owned_private_repos": 13, + "disk_usage": 104958, + "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/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..8246f6c638 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,51 @@ +{ + "id": "11b5a503-81c8-4c75-86f4-29aece672ca5", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"a78356b24c70002a5c721d7789be4984765938105a496ee45980bd8e2b4acb8a\"", + "Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "34", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "6DDB:0BF2:C43B083:C5F7EA0:64D49CED" + } + }, + "uuid": "11b5a503-81c8-4c75-86f4-29aece672ca5", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-3.json new file mode 100644 index 0000000000..c7472e4f1c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-3.json @@ -0,0 +1,58 @@ +{ + "id": "dd68d6f4-8604-4fa1-8b3e-60008b2641d7", + "name": "orgs_hub4j-test-org_repos", + "request": { + "url": "/orgs/hub4j-test-org/repos", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.nebula-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"visibility\":\"public\",\"name\":\"test-repo-visibility-public\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_hub4j-test-org_repos-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"a4022eacf3610f0af2727fe90fd92727d52c233a2d0498987687f85402ada84f\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; param=nebula-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "35", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "FD12:37FF:A0FD881:A27FB32:64D49CED", + "Location": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-public" + } + }, + "uuid": "dd68d6f4-8604-4fa1-8b3e-60008b2641d7", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-6.json new file mode 100644 index 0000000000..3150934e45 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/orgs_hub4j-test-org_repos-6.json @@ -0,0 +1,58 @@ +{ + "id": "4b47fb90-5073-413d-88fb-15e372883c5b", + "name": "orgs_hub4j-test-org_repos", + "request": { + "url": "/orgs/hub4j-test-org/repos", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.nebula-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"visibility\":\"private\",\"name\":\"test-repo-visibility-private\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "orgs_hub4j-test-org_repos-6.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"afbff3bbcc1fcbc9034fef2ae0c7ad185f86e13387630f1e50bf282f86cd7eb5\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; param=nebula-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "38", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "B4B1:3986:C5D9B60:C79698A:64D49CEF", + "Location": "https://api.github.com/repos/hub4j-test-org/test-repo-visibility-private" + } + }, + "uuid": "4b47fb90-5073-413d-88fb-15e372883c5b", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-7.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-7.json new file mode 100644 index 0000000000..f7270bb819 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-7.json @@ -0,0 +1,51 @@ +{ + "id": "540eae50-8e68-4a09-bc7e-44a345ca05ac", + "name": "repos_hub4j-test-org_test-repo-visibility-private", + "request": { + "url": "/repos/hub4j-test-org/test-repo-visibility-private", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_test-repo-visibility-private-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"9e0ca2fa3644d8f9ad2c77c331c32fb2b6142a08142217835d2dc50818ed9763\"", + "Last-Modified": "Thu, 10 Aug 2023 08:16:48 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "39", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "6FC8:0628:C18DB8F:C34AA1D:64D49CF1" + } + }, + "uuid": "540eae50-8e68-4a09-bc7e-44a345ca05ac", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-8.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-8.json new file mode 100644 index 0000000000..0cdae38823 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-private-8.json @@ -0,0 +1,43 @@ +{ + "id": "62ddd6fd-995a-48e9-80c5-778d276da598", + "name": "repos_hub4j-test-org_test-repo-visibility-private", + "request": { + "url": "/repos/hub4j-test-org/test-repo-visibility-private", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:49 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "40", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "3ECF:107D4:BA2781C:BBE45B6:64D49CF1" + } + }, + "uuid": "62ddd6fd-995a-48e9-80c5-778d276da598", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-4.json new file mode 100644 index 0000000000..ce2cd062bc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-4.json @@ -0,0 +1,51 @@ +{ + "id": "056ca96a-7c6c-4063-b832-091c1711a625", + "name": "repos_hub4j-test-org_test-repo-visibility-public", + "request": { + "url": "/repos/hub4j-test-org/test-repo-visibility-public", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_test-repo-visibility-public-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"424a290a1bc05597231646d41563213026e71b1b0b9f96fb9017ca534cbc5b81\"", + "Last-Modified": "Thu, 10 Aug 2023 08:16:46 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "36", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "5FFB:392E:BB82EAB:BD3FBC1:64D49CEE" + } + }, + "uuid": "056ca96a-7c6c-4063-b832-091c1711a625", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-5.json new file mode 100644 index 0000000000..84ecb2d295 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/repos_hub4j-test-org_test-repo-visibility-public-5.json @@ -0,0 +1,43 @@ +{ + "id": "48ed2e59-9b57-4b8f-99f8-10046d9fb104", + "name": "repos_hub4j-test-org_test-repo-visibility-public", + "request": { + "url": "/repos/hub4j-test-org/test-repo-visibility-public", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:47 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "delete_repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "37", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "98FD:392E:BB830AB:BD3FDC3:64D49CEF" + } + }, + "uuid": "48ed2e59-9b57-4b8f-99f8-10046d9fb104", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/user-1.json new file mode 100644 index 0000000000..adecd246e5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForOrganization/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "615f57b7-baf3-473d-ab53-7b9c378c826f", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:16:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"548cf23283fa0524609b0128ffe4d2e4d8bfe278a54ae9a93c7bbdcf6b9e199b\"", + "Last-Modified": "Fri, 28 Jul 2023 11:30:28 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "32", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "5300:6CA9:4DBF50F:4E76E9C:64D49CEC" + } + }, + "uuid": "615f57b7-baf3-473d-ab53-7b9c378c826f", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-private-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-private-3.json new file mode 100644 index 0000000000..41639b5477 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-private-3.json @@ -0,0 +1,121 @@ +{ + "id": 676880054, + "node_id": "R_kgDOKFhetg", + "name": "test-repo-visibility-private", + "full_name": "dbaur/test-repo-visibility-private", + "private": true, + "owner": { + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dbaur/test-repo-visibility-private", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dbaur/test-repo-visibility-private", + "forks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/forks", + "keys_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/teams", + "hooks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/hooks", + "issue_events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues/events{/number}", + "events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/events", + "assignees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/assignees{/user}", + "branches_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/branches{/branch}", + "tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/tags", + "blobs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/languages", + "stargazers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/stargazers", + "contributors_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/contributors", + "subscribers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/subscribers", + "subscription_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/subscription", + "commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/contents/{+path}", + "compare_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/merges", + "archive_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/downloads", + "issues_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues{/number}", + "pulls_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/labels{/name}", + "releases_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/releases{/id}", + "deployments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/deployments", + "created_at": "2023-08-10T08:17:17Z", + "updated_at": "2023-08-10T08:17:18Z", + "pushed_at": "2023-08-10T08:17:18Z", + "git_url": "git://github.com/dbaur/test-repo-visibility-private.git", + "ssh_url": "git@github.com:dbaur/test-repo-visibility-private.git", + "clone_url": "https://github.com/dbaur/test-repo-visibility-private.git", + "svn_url": "https://github.com/dbaur/test-repo-visibility-private", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABXKPQGUT6WEMKJU3O23ISDE2SPDU", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-public-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-public-6.json new file mode 100644 index 0000000000..b160d1fc85 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/repos_dbaur_test-repo-visibility-public-6.json @@ -0,0 +1,132 @@ +{ + "id": 676880069, + "node_id": "R_kgDOKFhexQ", + "name": "test-repo-visibility-public", + "full_name": "dbaur/test-repo-visibility-public", + "private": false, + "owner": { + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dbaur/test-repo-visibility-public", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dbaur/test-repo-visibility-public", + "forks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/forks", + "keys_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/teams", + "hooks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/hooks", + "issue_events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues/events{/number}", + "events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/events", + "assignees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/assignees{/user}", + "branches_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/branches{/branch}", + "tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/tags", + "blobs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/languages", + "stargazers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/stargazers", + "contributors_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/contributors", + "subscribers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/subscribers", + "subscription_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/subscription", + "commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/contents/{+path}", + "compare_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/merges", + "archive_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/downloads", + "issues_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues{/number}", + "pulls_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/labels{/name}", + "releases_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/releases{/id}", + "deployments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/deployments", + "created_at": "2023-08-10T08:17:20Z", + "updated_at": "2023-08-10T08:17:20Z", + "pushed_at": "2023-08-10T08:17:20Z", + "git_url": "git://github.com/dbaur/test-repo-visibility-public.git", + "ssh_url": "git@github.com:dbaur/test-repo-visibility-public.git", + "clone_url": "https://github.com/dbaur/test-repo-visibility-public.git", + "svn_url": "https://github.com/dbaur/test-repo-visibility-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "security_and_analysis": { + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + }, + "dependabot_security_updates": { + "status": "disabled" + } + }, + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user-1.json new file mode 100644 index 0000000000..21dc04da7c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false, + "name": "Daniel Baur", + "company": null, + "blog": "", + "location": "Ulm", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 50, + "public_gists": 0, + "followers": 7, + "following": 10, + "created_at": "2014-04-10T14:14:43Z", + "updated_at": "2023-07-28T11:30:28Z", + "private_gists": 3, + "total_private_repos": 13, + "owned_private_repos": 13, + "disk_usage": 104958, + "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/testCreateVisibilityForUser/__files/user_repos-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user_repos-2.json new file mode 100644 index 0000000000..5775ce95ae --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user_repos-2.json @@ -0,0 +1,120 @@ +{ + "id": 676880054, + "node_id": "R_kgDOKFhetg", + "name": "test-repo-visibility-private", + "full_name": "dbaur/test-repo-visibility-private", + "private": true, + "owner": { + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dbaur/test-repo-visibility-private", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dbaur/test-repo-visibility-private", + "forks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/forks", + "keys_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/teams", + "hooks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/hooks", + "issue_events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues/events{/number}", + "events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/events", + "assignees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/assignees{/user}", + "branches_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/branches{/branch}", + "tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/tags", + "blobs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/languages", + "stargazers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/stargazers", + "contributors_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/contributors", + "subscribers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/subscribers", + "subscription_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/subscription", + "commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/contents/{+path}", + "compare_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/merges", + "archive_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/downloads", + "issues_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/issues{/number}", + "pulls_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/labels{/name}", + "releases_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/releases{/id}", + "deployments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-private/deployments", + "created_at": "2023-08-10T08:17:17Z", + "updated_at": "2023-08-10T08:17:18Z", + "pushed_at": "2023-08-10T08:17:18Z", + "git_url": "git://github.com/dbaur/test-repo-visibility-private.git", + "ssh_url": "git@github.com:dbaur/test-repo-visibility-private.git", + "clone_url": "https://github.com/dbaur/test-repo-visibility-private.git", + "svn_url": "https://github.com/dbaur/test-repo-visibility-private", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "network_count": 0, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user_repos-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user_repos-5.json new file mode 100644 index 0000000000..79b5cc4e8b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/__files/user_repos-5.json @@ -0,0 +1,120 @@ +{ + "id": 676880069, + "node_id": "R_kgDOKFhexQ", + "name": "test-repo-visibility-public", + "full_name": "dbaur/test-repo-visibility-public", + "private": false, + "owner": { + "login": "dbaur", + "id": 7251904, + "node_id": "MDQ6VXNlcjcyNTE5MDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7251904?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dbaur", + "html_url": "https://github.com/dbaur", + "followers_url": "https://api.github.com/users/dbaur/followers", + "following_url": "https://api.github.com/users/dbaur/following{/other_user}", + "gists_url": "https://api.github.com/users/dbaur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbaur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbaur/subscriptions", + "organizations_url": "https://api.github.com/users/dbaur/orgs", + "repos_url": "https://api.github.com/users/dbaur/repos", + "events_url": "https://api.github.com/users/dbaur/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbaur/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dbaur/test-repo-visibility-public", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/dbaur/test-repo-visibility-public", + "forks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/forks", + "keys_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/teams", + "hooks_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/hooks", + "issue_events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues/events{/number}", + "events_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/events", + "assignees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/assignees{/user}", + "branches_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/branches{/branch}", + "tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/tags", + "blobs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/languages", + "stargazers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/stargazers", + "contributors_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/contributors", + "subscribers_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/subscribers", + "subscription_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/subscription", + "commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/contents/{+path}", + "compare_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/merges", + "archive_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/downloads", + "issues_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/issues{/number}", + "pulls_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/labels{/name}", + "releases_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/releases{/id}", + "deployments_url": "https://api.github.com/repos/dbaur/test-repo-visibility-public/deployments", + "created_at": "2023-08-10T08:17:20Z", + "updated_at": "2023-08-10T08:17:20Z", + "pushed_at": "2023-08-10T08:17:20Z", + "git_url": "git://github.com/dbaur/test-repo-visibility-public.git", + "ssh_url": "git@github.com:dbaur/test-repo-visibility-public.git", + "clone_url": "https://github.com/dbaur/test-repo-visibility-public.git", + "svn_url": "https://github.com/dbaur/test-repo-visibility-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, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-3.json new file mode 100644 index 0000000000..184e5309f6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-3.json @@ -0,0 +1,51 @@ +{ + "id": "f3be99a7-c7d5-4976-9985-819f1cf7cb89", + "name": "repos_dbaur_test-repo-visibility-private", + "request": { + "url": "/repos/dbaur/test-repo-visibility-private", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_dbaur_test-repo-visibility-private-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"1fcee14c53151014695c16026a070791c42f4b9459c5bf90b496c55f29aa15dc\"", + "Last-Modified": "Thu, 10 Aug 2023 08:17:18 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "44", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "535F:1B9A:A589168:A7197C8:64D49D0E" + } + }, + "uuid": "f3be99a7-c7d5-4976-9985-819f1cf7cb89", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-4.json new file mode 100644 index 0000000000..41ad8b5288 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-private-4.json @@ -0,0 +1,43 @@ +{ + "id": "380be673-7ca3-4c6d-916a-0df603ed0258", + "name": "repos_dbaur_test-repo-visibility-private", + "request": { + "url": "/repos/dbaur/test-repo-visibility-private", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:19 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "45", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "18B3:AC85:BD54BD2:BF11A60:64D49D0F" + } + }, + "uuid": "380be673-7ca3-4c6d-916a-0df603ed0258", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-6.json new file mode 100644 index 0000000000..c11595c6c3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-6.json @@ -0,0 +1,51 @@ +{ + "id": "86cbe029-2da6-4e64-a66e-17512214eb88", + "name": "repos_dbaur_test-repo-visibility-public", + "request": { + "url": "/repos/dbaur/test-repo-visibility-public", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_dbaur_test-repo-visibility-public-6.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"dbfe4b8a1933fb9ca510ef5152b51f52ed9055c3e732ba712b9c909fffd0b1e2\"", + "Last-Modified": "Thu, 10 Aug 2023 08:17:20 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "47", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "3F1E:107D4:BA310E4:BBEDF72:64D49D11" + } + }, + "uuid": "86cbe029-2da6-4e64-a66e-17512214eb88", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-7.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-7.json new file mode 100644 index 0000000000..c3002856ef --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/repos_dbaur_test-repo-visibility-public-7.json @@ -0,0 +1,43 @@ +{ + "id": "7941094b-097c-4538-aa6c-f009d286d101", + "name": "repos_dbaur_test-repo-visibility-public", + "request": { + "url": "/repos/dbaur/test-repo-visibility-public", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:21 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "delete_repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "48", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "C107:B69B:5C90851:5D7B6C5:64D49D11" + } + }, + "uuid": "7941094b-097c-4538-aa6c-f009d286d101", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user-1.json new file mode 100644 index 0000000000..9a0a622540 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "5371b0ef-81ed-47b9-abf1-7d86a9102827", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"548cf23283fa0524609b0128ffe4d2e4d8bfe278a54ae9a93c7bbdcf6b9e199b\"", + "Last-Modified": "Fri, 28 Jul 2023 11:30:28 GMT", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "41", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "118B:73C9:BBA374A:BD604E8:64D49D0C" + } + }, + "uuid": "5371b0ef-81ed-47b9-abf1-7d86a9102827", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-2.json new file mode 100644 index 0000000000..8e9e2301c6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-2.json @@ -0,0 +1,58 @@ +{ + "id": "a4cf11ac-2f3e-434a-a51b-d448a241f4cc", + "name": "user_repos", + "request": { + "url": "/user/repos", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.nebula-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"private\":true,\"visibility\":\"private\",\"name\":\"test-repo-visibility-private\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "user_repos-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"4b4328107fe0eac23f94e4c77aad112750d131c0fcd3a7b2f709e2db399eb79f\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; param=nebula-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "43", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "84E9:0F26:BF1EA4C:C0DB942:64D49D0D", + "Location": "https://api.github.com/repos/dbaur/test-repo-visibility-private" + } + }, + "uuid": "a4cf11ac-2f3e-434a-a51b-d448a241f4cc", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-5.json new file mode 100644 index 0000000000..e2e72551c9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testCreateVisibilityForUser/mappings/user_repos-5.json @@ -0,0 +1,58 @@ +{ + "id": "0a0e551b-947b-4ff1-ad4e-c345bd3abaae", + "name": "user_repos", + "request": { + "url": "/user/repos", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.nebula-preview+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"private\":false,\"visibility\":\"public\",\"name\":\"test-repo-visibility-public\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "user_repos-5.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 08:17:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"5d5e2558a98e94e2a9f97bc63f41919c0f5e16a420032274b421560393dce525\"", + "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "github-authentication-token-expiration": "2023-09-09 06:40:49 UTC", + "X-GitHub-Media-Type": "github.v3; param=nebula-preview; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1691657047", + "X-RateLimit-Used": "46", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "31CC:A754:9086FD:920FFE:64D49D0F", + "Location": "https://api.github.com/repos/dbaur/test-repo-visibility-public" + } + }, + "uuid": "0a0e551b-947b-4ff1-ad4e-c345bd3abaae", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..25c602bdf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,58 @@ +{ + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 9, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2020-01-03T09:09:41Z", + "updated_at": "2023-05-15T08:11:52Z", + "type": "Organization", + "total_private_repos": 1630, + "owned_private_repos": 1671, + "private_gists": 0, + "disk_usage": 4872624, + "collaborators": 75, + "billing_email": "garridobarrera@gmail.com", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "members_can_create_public_repositories": false, + "members_can_create_private_repositories": false, + "members_can_create_internal_repositories": false, + "members_can_create_pages": true, + "members_can_fork_private_repositories": false, + "web_commit_signoff_required": false, + "members_can_create_public_pages": true, + "members_can_create_private_pages": true, + "plan": { + "name": "enterprise", + "space": 976562499, + "private_repos": 999999, + "filled_seats": 5153, + "seats": 5664 + }, + "advanced_security_enabled_for_new_repositories": false, + "dependabot_alerts_enabled_for_new_repositories": false, + "dependabot_security_updates_enabled_for_new_repositories": false, + "dependency_graph_enabled_for_new_repositories": false, + "secret_scanning_enabled_for_new_repositories": false, + "secret_scanning_push_protection_enabled_for_new_repositories": false, + "secret_scanning_push_protection_custom_link_enabled": false, + "secret_scanning_push_protection_custom_link": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..e691789a9a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,143 @@ +{ + "id": 649619181, + "node_id": "R_kgDOJrhm7Q", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "github-api", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2023-06-05T09:18:13Z", + "updated_at": "2023-06-05T09:18:21Z", + "pushed_at": "2023-06-05T09:18:39Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-test-org/github-api", + "homepage": null, + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "topiclanguage" + ], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABVSGFSU5FJS5LWWZ543MBTEPX2XS", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-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/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/user-1.json new file mode 100644 index 0000000000..08775b9cda --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "garridobarrera", + "id": 7021334, + "node_id": "MDQ6VXNlcjcwMjEzMzQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7021334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/garridobarrera", + "html_url": "https://github.com/garridobarrera", + "followers_url": "https://api.github.com/users/garridobarrera/followers", + "following_url": "https://api.github.com/users/garridobarrera/following{/other_user}", + "gists_url": "https://api.github.com/users/garridobarrera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/garridobarrera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/garridobarrera/subscriptions", + "organizations_url": "https://api.github.com/users/garridobarrera/orgs", + "repos_url": "https://api.github.com/users/garridobarrera/repos", + "events_url": "https://api.github.com/users/garridobarrera/events{/privacy}", + "received_events_url": "https://api.github.com/users/garridobarrera/received_events", + "type": "User", + "site_admin": false, + "name": "José Manuel Garrido Barrera", + "company": "personal", + "blog": "", + "location": null, + "email": "garridobarrera@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 11, + "public_gists": 0, + "followers": 3, + "following": 3, + "created_at": "2014-03-21T10:37:00Z", + "updated_at": "2023-03-13T11:32:23Z", + "private_gists": 0, + "total_private_repos": 2, + "owned_private_repos": 2, + "disk_usage": 5935, + "collaborators": 1, + "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/testDeleteRepoActionVariable/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..300b6cedd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,50 @@ +{ + "id": "ae6ef016-0e7a-49a3-901b-4f2807e31e2e", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"46a40cb19e416c1d2dce19a8db11c0f32801a98a0c629dfa70fd25358454e97d\"", + "Last-Modified": "Mon, 15 May 2023 08:11:52 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "105", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CCAF:10E3E:13C923FB:14006713:647DF44C" + } + }, + "uuid": "ae6ef016-0e7a-49a3-901b-4f2807e31e2e", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..058b260dbd --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,50 @@ +{ + "id": "1fc5275c-8afb-4d1e-9e09-a627b651097f", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ad2ec095079899332f528baec4441d362d0e6e5594b29ff93423e00ce1f5350b\"", + "Last-Modified": "Mon, 05 Jun 2023 09:18:21 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "106", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CCB0:D7C5:EDFAFBE:F0A6BAB:647DF44C" + } + }, + "uuid": "1fc5275c-8afb-4d1e-9e09-a627b651097f", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json new file mode 100644 index 0000000000..c786d63d84 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json @@ -0,0 +1,52 @@ +{ + "id": "d88ce739-d1f7-4a9d-9ac1-4dd8ddb5a2c9", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/mynewvariable", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"myupdatevalue\",\"created_at\":\"2023-06-05T14:41:26Z\",\"updated_at\":\"2023-06-05T14:42:03Z\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"adc647a71f6dd424746b9f6b68580e603d95daafc4c8026c6482cd6e56e6842d\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "107", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CCB1:86C7:AE0F8D4:B029CE4:647DF44D" + } + }, + "uuid": "d88ce739-d1f7-4a9d-9ac1-4dd8ddb5a2c9", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-mynewvariable", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-mynewvariable-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json new file mode 100644 index 0000000000..a16c2ae5a3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json @@ -0,0 +1,42 @@ +{ + "id": "4258eddb-68ee-4b81-a663-ae5b1d15246d", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/MYNEWVARIABLE", + "method": "DELETE", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:22 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "108", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "CCB2:EA30:E5C990A:E860BEB:647DF44D" + } + }, + "uuid": "4258eddb-68ee-4b81-a663-ae5b1d15246d", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json new file mode 100644 index 0000000000..e0ce969310 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json @@ -0,0 +1,46 @@ +{ + "id": "bce04a9b-5390-4605-a3c2-466516e59cce", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/mynewvariable", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/actions/variables#get-a-repository-variable\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "109", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "743A:8B14:10B608C0:10E55C07:647DF44E" + } + }, + "uuid": "bce04a9b-5390-4605-a3c2-466516e59cce", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-mynewvariable", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-mynewvariable-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/user-1.json new file mode 100644 index 0000000000..b4122cfe40 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testDeleteRepoActionVariable/mappings/user-1.json @@ -0,0 +1,50 @@ +{ + "id": "43bf07f8-47b8-47f0-beb1-962b1a3835cc", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"72b451bc289e83190862630ea2754b45789caedda90121a9584bce45fe6830c8\"", + "Last-Modified": "Mon, 13 Mar 2023 11:32:23 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "103", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CCAD:51B5:1633B1D5:1670787E:647DF44B" + } + }, + "uuid": "43bf07f8-47b8-47f0-beb1-962b1a3835cc", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testGetters/__files/repos_hub4j-test-org_temp-testgetters-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testGetters/__files/repos_hub4j-test-org_temp-testgetters-2.json index f8d16217fc..dac8e119fa 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testGetters/__files/repos_hub4j-test-org_temp-testgetters-2.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testGetters/__files/repos_hub4j-test-org_temp-testgetters-2.json @@ -101,6 +101,7 @@ "allow_merge_commit": true, "allow_rebase_merge": true, "delete_branch_on_merge": false, + "allow_forking": false, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -123,4 +124,4 @@ }, "network_count": 0, "subscribers_count": 7 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..25c602bdf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,58 @@ +{ + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 9, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2020-01-03T09:09:41Z", + "updated_at": "2023-05-15T08:11:52Z", + "type": "Organization", + "total_private_repos": 1630, + "owned_private_repos": 1671, + "private_gists": 0, + "disk_usage": 4872624, + "collaborators": 75, + "billing_email": "garridobarrera@gmail.com", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "members_can_create_public_repositories": false, + "members_can_create_private_repositories": false, + "members_can_create_internal_repositories": false, + "members_can_create_pages": true, + "members_can_fork_private_repositories": false, + "web_commit_signoff_required": false, + "members_can_create_public_pages": true, + "members_can_create_private_pages": true, + "plan": { + "name": "enterprise", + "space": 976562499, + "private_repos": 999999, + "filled_seats": 5153, + "seats": 5664 + }, + "advanced_security_enabled_for_new_repositories": false, + "dependabot_alerts_enabled_for_new_repositories": false, + "dependabot_security_updates_enabled_for_new_repositories": false, + "dependency_graph_enabled_for_new_repositories": false, + "secret_scanning_enabled_for_new_repositories": false, + "secret_scanning_push_protection_enabled_for_new_repositories": false, + "secret_scanning_push_protection_custom_link_enabled": false, + "secret_scanning_push_protection_custom_link": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..6cb6e062cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,143 @@ +{ + "id": 649619181, + "node_id": "R_kgDOJrhm7Q", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "github-api", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2023-06-05T09:18:13Z", + "updated_at": "2023-06-05T09:18:21Z", + "pushed_at": "2023-06-05T09:18:39Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-test-org/github-api", + "homepage": null, + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "topiclanguage" + ], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABVSGFWHKEOHAZLNFDN2WA3EPX2PG", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-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/GHRepositoryTest/wiremock/testRepoActionVariable/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/user-1.json new file mode 100644 index 0000000000..08775b9cda --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "garridobarrera", + "id": 7021334, + "node_id": "MDQ6VXNlcjcwMjEzMzQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7021334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/garridobarrera", + "html_url": "https://github.com/garridobarrera", + "followers_url": "https://api.github.com/users/garridobarrera/followers", + "following_url": "https://api.github.com/users/garridobarrera/following{/other_user}", + "gists_url": "https://api.github.com/users/garridobarrera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/garridobarrera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/garridobarrera/subscriptions", + "organizations_url": "https://api.github.com/users/garridobarrera/orgs", + "repos_url": "https://api.github.com/users/garridobarrera/repos", + "events_url": "https://api.github.com/users/garridobarrera/events{/privacy}", + "received_events_url": "https://api.github.com/users/garridobarrera/received_events", + "type": "User", + "site_admin": false, + "name": "José Manuel Garrido Barrera", + "company": "personal", + "blog": "", + "location": null, + "email": "garridobarrera@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 11, + "public_gists": 0, + "followers": 3, + "following": 3, + "created_at": "2014-03-21T10:37:00Z", + "updated_at": "2023-03-13T11:32:23Z", + "private_gists": 0, + "total_private_repos": 2, + "owned_private_repos": 2, + "disk_usage": 5935, + "collaborators": 1, + "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/testRepoActionVariable/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..e19d1222b0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,50 @@ +{ + "id": "43a649a4-f410-4d1b-8094-50fdb86d4e56", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:40:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"46a40cb19e416c1d2dce19a8db11c0f32801a98a0c629dfa70fd25358454e97d\"", + "Last-Modified": "Mon, 15 May 2023 08:11:52 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "87", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC60:2143:C603F3C:C83F892:647DF3C6" + } + }, + "uuid": "43a649a4-f410-4d1b-8094-50fdb86d4e56", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..a94c45698c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,50 @@ +{ + "id": "067e960b-58de-4bb3-9d66-21a3f334c523", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:40:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ad2ec095079899332f528baec4441d362d0e6e5594b29ff93423e00ce1f5350b\"", + "Last-Modified": "Mon, 05 Jun 2023 09:18:21 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "88", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC61:E303:180C3883:184BC7EE:647DF3C7" + } + }, + "uuid": "067e960b-58de-4bb3-9d66-21a3f334c523", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_myvar-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_myvar-4.json new file mode 100644 index 0000000000..4f06adbe85 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_myvar-4.json @@ -0,0 +1,49 @@ +{ + "id": "624eb199-1d0c-4b4c-b5c6-9cc8a918b15e", + "name": "repos_hub4j-test-org_github-api_actions_variables_myvar", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/myvar", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "{\"name\":\"MYVAR\",\"value\":\"this is my var value\",\"created_at\":\"2023-06-05T13:57:01Z\",\"updated_at\":\"2023-06-05T13:57:39Z\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:40:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"85935ba33a83ca7e6b8bcd0f53a928c40a1a61529c90b08ea3ccf368a7c8f836\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "89", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC62:8B14:10B3D9D6:10E328E5:647DF3C7" + } + }, + "uuid": "624eb199-1d0c-4b4c-b5c6-9cc8a918b15e", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/user-1.json new file mode 100644 index 0000000000..302c6be055 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testRepoActionVariable/mappings/user-1.json @@ -0,0 +1,50 @@ +{ + "id": "634f7697-2ba4-4e53-ad18-c99d2696e77d", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:40:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"72b451bc289e83190862630ea2754b45789caedda90121a9584bce45fe6830c8\"", + "Last-Modified": "Mon, 13 Mar 2023 11:32:23 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "85", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC5E:51B5:163198FA:166E5B89:647DF3C5" + } + }, + "uuid": "634f7697-2ba4-4e53-ad18-c99d2696e77d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..25c602bdf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/orgs_hub4j-test-org-2.json @@ -0,0 +1,58 @@ +{ + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "url": "https://api.github.com/orgs/hub4j-test-org", + "repos_url": "https://api.github.com/orgs/hub4j-test-org/repos", + "events_url": "https://api.github.com/orgs/hub4j-test-org/events", + "hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks", + "issues_url": "https://api.github.com/orgs/hub4j-test-org/issues", + "members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 1, + "public_gists": 0, + "followers": 9, + "following": 0, + "html_url": "https://github.com/hub4j-test-org", + "created_at": "2020-01-03T09:09:41Z", + "updated_at": "2023-05-15T08:11:52Z", + "type": "Organization", + "total_private_repos": 1630, + "owned_private_repos": 1671, + "private_gists": 0, + "disk_usage": 4872624, + "collaborators": 75, + "billing_email": "garridobarrera@gmail.com", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "members_allowed_repository_creation_type": "none", + "members_can_create_public_repositories": false, + "members_can_create_private_repositories": false, + "members_can_create_internal_repositories": false, + "members_can_create_pages": true, + "members_can_fork_private_repositories": false, + "web_commit_signoff_required": false, + "members_can_create_public_pages": true, + "members_can_create_private_pages": true, + "plan": { + "name": "enterprise", + "space": 976562499, + "private_repos": 999999, + "filled_seats": 5153, + "seats": 5664 + }, + "advanced_security_enabled_for_new_repositories": false, + "dependabot_alerts_enabled_for_new_repositories": false, + "dependabot_security_updates_enabled_for_new_repositories": false, + "dependency_graph_enabled_for_new_repositories": false, + "secret_scanning_enabled_for_new_repositories": false, + "secret_scanning_push_protection_enabled_for_new_repositories": false, + "secret_scanning_push_protection_custom_link_enabled": false, + "secret_scanning_push_protection_custom_link": null +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..3f1d4881f1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,143 @@ +{ + "id": 649619181, + "node_id": "R_kgDOJrhm7Q", + "name": "github-api", + "full_name": "hub4j-test-org/github-api", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/github-api", + "description": "github-api", + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/github-api", + "forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments", + "created_at": "2023-06-05T09:18:13Z", + "updated_at": "2023-06-05T09:18:21Z", + "pushed_at": "2023-06-05T09:18:39Z", + "git_url": "git://github.com/hub4j-test-org/github-api.git", + "ssh_url": "git@github.com:hub4j-test-org/github-api.git", + "clone_url": "https://github.com/hub4j-test-org/github-api.git", + "svn_url": "https://github.com/hub4j-test-org/github-api", + "homepage": null, + "size": 7, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": false, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "topiclanguage" + ], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "ABVSGFSARH5HR7ZIAXGJ54DEPX2WM", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "organization": { + "login": "hub4j-test-org", + "id": 59470614, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU5NDcwNjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/59470614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-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/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/user-1.json new file mode 100644 index 0000000000..08775b9cda --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "garridobarrera", + "id": 7021334, + "node_id": "MDQ6VXNlcjcwMjEzMzQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/7021334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/garridobarrera", + "html_url": "https://github.com/garridobarrera", + "followers_url": "https://api.github.com/users/garridobarrera/followers", + "following_url": "https://api.github.com/users/garridobarrera/following{/other_user}", + "gists_url": "https://api.github.com/users/garridobarrera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/garridobarrera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/garridobarrera/subscriptions", + "organizations_url": "https://api.github.com/users/garridobarrera/orgs", + "repos_url": "https://api.github.com/users/garridobarrera/repos", + "events_url": "https://api.github.com/users/garridobarrera/events{/privacy}", + "received_events_url": "https://api.github.com/users/garridobarrera/received_events", + "type": "User", + "site_admin": false, + "name": "José Manuel Garrido Barrera", + "company": "personal", + "blog": "", + "location": null, + "email": "garridobarrera@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 11, + "public_gists": 0, + "followers": 3, + "following": 3, + "created_at": "2014-03-21T10:37:00Z", + "updated_at": "2023-03-13T11:32:23Z", + "private_gists": 0, + "total_private_repos": 2, + "owned_private_repos": 2, + "disk_usage": 5935, + "collaborators": 1, + "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/testUpdateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json new file mode 100644 index 0000000000..86c320ea61 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/orgs_hub4j-test-org-2.json @@ -0,0 +1,50 @@ +{ + "id": "ec015fc5-de63-4b49-a0f1-3533fbec1304", + "name": "orgs_hub4j-test-org", + "request": { + "url": "/orgs/hub4j-test-org", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "orgs_hub4j-test-org-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"46a40cb19e416c1d2dce19a8db11c0f32801a98a0c629dfa70fd25358454e97d\"", + "Last-Modified": "Mon, 15 May 2023 08:11:52 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "98", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC99:62E4:1745DEC3:17857007:647DF439" + } + }, + "uuid": "ec015fc5-de63-4b49-a0f1-3533fbec1304", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json new file mode 100644 index 0000000000..fe37896786 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api-3.json @@ -0,0 +1,50 @@ +{ + "id": "5253ccea-04a8-46a2-81fd-f4b53a3c4239", + "name": "repos_hub4j-test-org_github-api", + "request": { + "url": "/repos/hub4j-test-org/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_github-api-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ad2ec095079899332f528baec4441d362d0e6e5594b29ff93423e00ce1f5350b\"", + "Last-Modified": "Mon, 05 Jun 2023 09:18:21 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "99", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC9A:EA30:E5C3C98:E85AF0B:647DF439" + } + }, + "uuid": "5253ccea-04a8-46a2-81fd-f4b53a3c4239", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json new file mode 100644 index 0000000000..979640577a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-4.json @@ -0,0 +1,52 @@ +{ + "id": "4ae08d81-f174-4291-90ba-3e1ddc4c7e44", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/MYNEWVARIABLE", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"mynewvalue\",\"created_at\":\"2023-06-05T14:41:26Z\",\"updated_at\":\"2023-06-05T14:41:26Z\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"ce64a844db6abf4edd4b3d80a8d2a1b698a7f6b39ddd029a703ff5e74688bf50\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "100", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC9B:10E3E:13C8D48C:1400172D:647DF43A" + } + }, + "uuid": "4ae08d81-f174-4291-90ba-3e1ddc4c7e44", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-MYNEWVARIABLE", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-MYNEWVARIABLE-2", + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json new file mode 100644 index 0000000000..6b4f2a0ccb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-5.json @@ -0,0 +1,49 @@ +{ + "id": "ddade36a-39bf-4456-a991-7bcb6e6445ab", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/MYNEWVARIABLE", + "method": "PATCH", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"myupdatevalue\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 204, + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:03 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "101", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "CC9C:1168F:1635BE44:16732AC5:647DF43A" + } + }, + "uuid": "ddade36a-39bf-4456-a991-7bcb6e6445ab", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json new file mode 100644 index 0000000000..76ff6a75bc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/repos_hub4j-test-org_github-api_actions_variables_mynewvariable-6.json @@ -0,0 +1,51 @@ +{ + "id": "a3144943-cefe-4ec1-9d88-ff2ad08ddbb5", + "name": "repos_hub4j-test-org_github-api_actions_variables_mynewvariable", + "request": { + "url": "/repos/hub4j-test-org/github-api/actions/variables/MYNEWVARIABLE", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "body": "{\"name\":\"MYNEWVARIABLE\",\"value\":\"myupdatevalue\",\"created_at\":\"2023-06-05T14:41:26Z\",\"updated_at\":\"2023-06-05T14:42:03Z\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"adc647a71f6dd424746b9f6b68580e603d95daafc4c8026c6482cd6e56e6842d\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "102", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC9D:2143:C6213A1:C85D073:647DF43B" + } + }, + "uuid": "a3144943-cefe-4ec1-9d88-ff2ad08ddbb5", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-MYNEWVARIABLE", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-actions-variables-MYNEWVARIABLE-2", + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/user-1.json new file mode 100644 index 0000000000..089f9f6cc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepoActionVariable/mappings/user-1.json @@ -0,0 +1,50 @@ +{ + "id": "43b68c03-8469-4721-8370-2ddbc435ae76", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Mon, 05 Jun 2023 14:42:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"72b451bc289e83190862630ea2754b45789caedda90121a9584bce45fe6830c8\"", + "Last-Modified": "Mon, 13 Mar 2023 11:32:23 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1685976900", + "X-RateLimit-Used": "96", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "CC97:4749:B22F17B:B448F22:647DF438" + } + }, + "uuid": "43b68c03-8469-4721-8370-2ddbc435ae76", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-2.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-2.json index a6f5e84b2c..b35dc8ffd7 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-2.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-2.json @@ -101,6 +101,7 @@ "allow_merge_commit": true, "allow_rebase_merge": true, "delete_branch_on_merge": false, + "allow_forking": false, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -123,4 +124,4 @@ }, "network_count": 0, "subscribers_count": 9 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-3.json index d62845bc50..ed4894e9e9 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-3.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-3.json @@ -100,6 +100,7 @@ "allow_merge_commit": true, "allow_rebase_merge": false, "delete_branch_on_merge": true, + "allow_forking": true, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -122,4 +123,4 @@ }, "network_count": 0, "subscribers_count": 9 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-4.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-4.json index 8c2ad19854..8e4d6e85ba 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-4.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-4.json @@ -100,6 +100,7 @@ "allow_merge_commit": false, "allow_rebase_merge": true, "delete_branch_on_merge": true, + "allow_forking": false, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -122,4 +123,4 @@ }, "network_count": 0, "subscribers_count": 9 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-5.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-5.json index 3ce310fccf..88ad46243c 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-5.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/__files/repos_hub4j-test-org_temp-testupdaterepository-5.json @@ -100,6 +100,7 @@ "allow_merge_commit": false, "allow_rebase_merge": true, "delete_branch_on_merge": true, + "allow_forking": false, "organization": { "login": "hub4j-test-org", "id": 7544739, @@ -122,4 +123,4 @@ }, "network_count": 0, "subscribers_count": 9 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/mappings/repos_hub4j-test-org_temp-testupdaterepository-3.json b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/mappings/repos_hub4j-test-org_temp-testupdaterepository-3.json index 8596d7744c..38d758a008 100644 --- a/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/mappings/repos_hub4j-test-org_temp-testupdaterepository-3.json +++ b/src/test/resources/org/kohsuke/github/GHRepositoryTest/wiremock/testUpdateRepository/mappings/repos_hub4j-test-org_temp-testupdaterepository-3.json @@ -11,7 +11,7 @@ }, "bodyPatterns": [ { - "equalToJson": "{\"name\":\"temp-testUpdateRepository\",\"has_projects\":false,\"allow_squash_merge\":false,\"private\":true,\"has_downloads\":false,\"has_wiki\":false,\"description\":\"A test repository for update testing via the github-api project\",\"delete_branch_on_merge\":true,\"allow_rebase_merge\":false,\"has_issues\":false,\"homepage\":\"https://github-api.kohsuke.org/apidocs/index.html\"}", + "equalToJson": "{\"name\":\"temp-testUpdateRepository\",\"has_projects\":false,\"allow_squash_merge\":false,\"allow_forking\":true,\"private\":true,\"has_downloads\":false,\"has_wiki\":false,\"description\":\"A test repository for update testing via the github-api project\",\"delete_branch_on_merge\":true,\"allow_rebase_merge\":false,\"has_issues\":false,\"homepage\":\"https://github-api.kohsuke.org/apidocs/index.html\"}", "ignoreArrayOrder": true, "ignoreExtraElements": false } @@ -51,4 +51,4 @@ "uuid": "d0036ebb-64a8-4c4c-bed3-697870892d5f", "persistent": true, "insertionIndex": 3 -} \ No newline at end of file +} diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest-2.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest-2.json new file mode 100644 index 0000000000..cb012a1256 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest-2.json @@ -0,0 +1,121 @@ +{ + "id": 654900107, + "node_id": "R_kgDOJwj7iw", + "name": "GHTreeBuilderTest", + "full_name": "hub4j-test-org/GHTreeBuilderTest", + "private": true, + "owner": { + "login": "hub4j-test-org", + "id": 1793410, + "node_id": "MDQ6VXNlcjE3OTM0MTA=", + "avatar_url": "https://avatars.githubusercontent.com/u/1793410?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j-test-org", + "html_url": "https://github.com/hub4j-test-org", + "followers_url": "https://api.github.com/users/hub4j-test-org/followers", + "following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j-test-org/orgs", + "repos_url": "https://api.github.com/users/hub4j-test-org/repos", + "events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j-test-org/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest", + "forks_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/forks", + "keys_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/teams", + "hooks_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/events", + "assignees_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/tags", + "blobs_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/languages", + "stargazers_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/subscription", + "commits_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/merges", + "archive_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/downloads", + "issues_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/deployments", + "created_at": "2023-06-17T09:21:30Z", + "updated_at": "2023-06-17T09:21:30Z", + "pushed_at": "2023-06-20T05:28:20Z", + "git_url": "git://github.com/hub4j-test-org/GHTreeBuilderTest.git", + "ssh_url": "git@github.com:hub4j-test-org/GHTreeBuilderTest.git", + "clone_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest.git", + "svn_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest", + "homepage": null, + "size": 4, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "private", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "permissions": { + "admin": true, + "maintain": true, + "push": true, + "triage": true, + "pull": true + }, + "temp_clone_token": "AANV3AUXZXCI3AHCWHMMVFLESE5DS", + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": false, + "allow_update_branch": false, + "use_squash_pr_title_as_default": false, + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "network_count": 0, + "subscribers_count": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json new file mode 100644 index 0000000000..225ce2948e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json @@ -0,0 +1,72 @@ +{ + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "node_id": "MDY6Q29tbWl0NjU0OTAwMTA3OjdlODg4YTFjZDk1YzNjYWYzMWExNmZmMjE3NTFhMDZhN2ZlYjAzOWY=", + "commit": { + "author": { + "name": "author", + "email": "author@author.com", + "date": "2021-01-23T20:20:25Z" + }, + "committer": { + "name": "committer", + "email": "committer@committer.com", + "date": "2021-01-23T20:20:25Z" + }, + "message": "Add files", + "tree": { + "sha": "0efbfcf79def8e437d825e0116def4be6be56026", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026" + }, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "comments_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "172349212fb19ffa4f33dcced3263c6963dc750a", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/172349212fb19ffa4f33dcced3263c6963dc750a", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/172349212fb19ffa4f33dcced3263c6963dc750a" + } + ], + "stats": { + "total": 2, + "additions": 2, + "deletions": 0 + }, + "files": [ + { + "sha": "aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74", + "filename": "data/val1.dat", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/7e888a1cd95c3caf31a16ff21751a06a7feb039f/data%2Fval1.dat", + "raw_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/raw/7e888a1cd95c3caf31a16ff21751a06a7feb039f/data%2Fval1.dat", + "contents_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/data%2Fval1.dat?ref=7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "patch": "@@ -0,0 +1 @@\n+\u0001\u0002\u0003\n\\ No newline at end of file" + }, + { + "sha": "fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "filename": "doc/readme.txt", + "status": "added", + "additions": 1, + "deletions": 0, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/7e888a1cd95c3caf31a16ff21751a06a7feb039f/doc%2Freadme.txt", + "raw_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/raw/7e888a1cd95c3caf31a16ff21751a06a7feb039f/doc%2Freadme.txt", + "contents_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc%2Freadme.txt?ref=7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "patch": "@@ -0,0 +1 @@\n+Thanks for using our application!" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json new file mode 100644 index 0000000000..2ba4afd323 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json @@ -0,0 +1,60 @@ +{ + "sha": "7f9b11d9512f639acc6d48439621026cf8410f3a", + "node_id": "MDY6Q29tbWl0NjU0OTAwMTA3OjdmOWIxMWQ5NTEyZjYzOWFjYzZkNDg0Mzk2MjEwMjZjZjg0MTBmM2E=", + "commit": { + "author": { + "name": "author", + "email": "author@author.com", + "date": "2021-01-23T20:20:25Z" + }, + "committer": { + "name": "committer", + "email": "committer@committer.com", + "date": "2021-01-23T20:20:25Z" + }, + "message": "Add files", + "tree": { + "sha": "f9a619cb835ac407e0a464618fc59386be70bd63", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/f9a619cb835ac407e0a464618fc59386be70bd63" + }, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7f9b11d9512f639acc6d48439621026cf8410f3a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/7f9b11d9512f639acc6d48439621026cf8410f3a", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7f9b11d9512f639acc6d48439621026cf8410f3a", + "comments_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/7f9b11d9512f639acc6d48439621026cf8410f3a/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7e888a1cd95c3caf31a16ff21751a06a7feb039f" + } + ], + "stats": { + "total": 1, + "additions": 0, + "deletions": 1 + }, + "files": [ + { + "sha": "aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74", + "filename": "data/val1.dat", + "status": "removed", + "additions": 0, + "deletions": 1, + "changes": 1, + "blob_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/7e888a1cd95c3caf31a16ff21751a06a7feb039f/data%2Fval1.dat", + "raw_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/raw/7e888a1cd95c3caf31a16ff21751a06a7feb039f/data%2Fval1.dat", + "contents_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/data%2Fval1.dat?ref=7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "patch": "@@ -1 +0,0 @@\n-\u0001\u0002\u0003\n\\ No newline at end of file" + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json new file mode 100644 index 0000000000..dc0d19abb7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json @@ -0,0 +1,18 @@ +{ + "name": "val1.dat", + "path": "data/val1.dat", + "sha": "aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74", + "size": 3, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/data/val1.dat?ref=main", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/data/val1.dat", + "git_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74", + "download_url": "https://raw.githubusercontent.com/hub4j-test-org/GHTreeBuilderTest/main/data/val1.dat?token=AANV3AQG25IMIIRS2WYVBALESE4UY", + "type": "file", + "content": "AQID\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/data/val1.dat?ref=main", + "git": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74", + "html": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/data/val1.dat" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json new file mode 100644 index 0000000000..a3a4409999 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json @@ -0,0 +1,18 @@ +{ + "name": "readme.txt", + "path": "doc/readme.txt", + "sha": "fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "size": 34, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt?ref=main", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/doc/readme.txt", + "git_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "download_url": "https://raw.githubusercontent.com/hub4j-test-org/GHTreeBuilderTest/main/doc/readme.txt?token=AANV3AUAKUQF4Q66G35XPVLESE4UY", + "type": "file", + "content": "VGhhbmtzIGZvciB1c2luZyBvdXIgYXBwbGljYXRpb24hCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt?ref=main", + "git": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "html": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/doc/readme.txt" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json new file mode 100644 index 0000000000..bdff55b213 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json @@ -0,0 +1,18 @@ +{ + "name": "readme.txt", + "path": "doc/readme.txt", + "sha": "fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "size": 34, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt?ref=main", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/doc/readme.txt", + "git_url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "download_url": "https://raw.githubusercontent.com/hub4j-test-org/GHTreeBuilderTest/main/doc/readme.txt?token=AANV3ATL6IK7FMQNM2ZOCG3ESE4U6", + "type": "file", + "content": "VGhhbmtzIGZvciB1c2luZyBvdXIgYXBwbGljYXRpb24hCg==\n", + "encoding": "base64", + "_links": { + "self": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt?ref=main", + "git": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c", + "html": "https://github.com/hub4j-test-org/GHTreeBuilderTest/blob/main/doc/readme.txt" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json new file mode 100644 index 0000000000..fb216cbe10 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json @@ -0,0 +1,34 @@ +{ + "sha": "7f9b11d9512f639acc6d48439621026cf8410f3a", + "node_id": "MDY6Q29tbWl0NjU0OTAwMTA3OjdmOWIxMWQ5NTEyZjYzOWFjYzZkNDg0Mzk2MjEwMjZjZjg0MTBmM2E=", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7f9b11d9512f639acc6d48439621026cf8410f3a", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7f9b11d9512f639acc6d48439621026cf8410f3a", + "author": { + "name": "author", + "email": "author@author.com", + "date": "2021-01-23T20:20:25Z" + }, + "committer": { + "name": "committer", + "email": "committer@committer.com", + "date": "2021-01-23T20:20:25Z" + }, + "tree": { + "sha": "f9a619cb835ac407e0a464618fc59386be70bd63", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/f9a619cb835ac407e0a464618fc59386be70bd63" + }, + "message": "Add files", + "parents": [ + { + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7e888a1cd95c3caf31a16ff21751a06a7feb039f" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json new file mode 100644 index 0000000000..4f4ff447cf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json @@ -0,0 +1,34 @@ +{ + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "node_id": "MDY6Q29tbWl0NjU0OTAwMTA3OjdlODg4YTFjZDk1YzNjYWYzMWExNmZmMjE3NTFhMDZhN2ZlYjAzOWY=", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "author": { + "name": "author", + "email": "author@author.com", + "date": "2021-01-23T20:20:25Z" + }, + "committer": { + "name": "committer", + "email": "committer@committer.com", + "date": "2021-01-23T20:20:25Z" + }, + "tree": { + "sha": "0efbfcf79def8e437d825e0116def4be6be56026", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026" + }, + "message": "Add files", + "parents": [ + { + "sha": "172349212fb19ffa4f33dcced3263c6963dc750a", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/172349212fb19ffa4f33dcced3263c6963dc750a", + "html_url": "https://github.com/hub4j-test-org/GHTreeBuilderTest/commit/172349212fb19ffa4f33dcced3263c6963dc750a" + } + ], + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json new file mode 100644 index 0000000000..6d6251930d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/main", + "node_id": "REF_kwDOJwj7i69yZWZzL2hlYWRzL21haW4", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "object": { + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "type": "commit", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json new file mode 100644 index 0000000000..ec2d79dbc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/main", + "node_id": "REF_kwDOJwj7i69yZWZzL2hlYWRzL21haW4", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "object": { + "sha": "7f9b11d9512f639acc6d48439621026cf8410f3a", + "type": "commit", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7f9b11d9512f639acc6d48439621026cf8410f3a" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json new file mode 100644 index 0000000000..7daaa422c0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/main", + "node_id": "REF_kwDOJwj7i69yZWZzL2hlYWRzL21haW4", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "object": { + "sha": "172349212fb19ffa4f33dcced3263c6963dc750a", + "type": "commit", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/172349212fb19ffa4f33dcced3263c6963dc750a" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json new file mode 100644 index 0000000000..6d6251930d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json @@ -0,0 +1,10 @@ +{ + "ref": "refs/heads/main", + "node_id": "REF_kwDOJwj7i69yZWZzL2hlYWRzL21haW4", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "object": { + "sha": "7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "type": "commit", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json new file mode 100644 index 0000000000..ecec5ac01a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json @@ -0,0 +1,22 @@ +{ + "sha": "f9a619cb835ac407e0a464618fc59386be70bd63", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/f9a619cb835ac407e0a464618fc59386be70bd63", + "tree": [ + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "958337fe1f522a58e5e7098cc61a2917db1c9643", + "size": 19, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/958337fe1f522a58e5e7098cc61a2917db1c9643" + }, + { + "path": "doc", + "mode": "040000", + "type": "tree", + "sha": "30bda54e864ecafd021698ddf75bb9378dd755e5", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/30bda54e864ecafd021698ddf75bb9378dd755e5" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json new file mode 100644 index 0000000000..a2661a636b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json @@ -0,0 +1,29 @@ +{ + "sha": "0efbfcf79def8e437d825e0116def4be6be56026", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026", + "tree": [ + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "958337fe1f522a58e5e7098cc61a2917db1c9643", + "size": 19, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/958337fe1f522a58e5e7098cc61a2917db1c9643" + }, + { + "path": "data", + "mode": "040000", + "type": "tree", + "sha": "3ad1a259f440f9995a93ecfd9de5b6ad23d88455", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/3ad1a259f440f9995a93ecfd9de5b6ad23d88455" + }, + { + "path": "doc", + "mode": "040000", + "type": "tree", + "sha": "30bda54e864ecafd021698ddf75bb9378dd755e5", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/30bda54e864ecafd021698ddf75bb9378dd755e5" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json new file mode 100644 index 0000000000..a2661a636b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json @@ -0,0 +1,29 @@ +{ + "sha": "0efbfcf79def8e437d825e0116def4be6be56026", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026", + "tree": [ + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "958337fe1f522a58e5e7098cc61a2917db1c9643", + "size": 19, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/958337fe1f522a58e5e7098cc61a2917db1c9643" + }, + { + "path": "data", + "mode": "040000", + "type": "tree", + "sha": "3ad1a259f440f9995a93ecfd9de5b6ad23d88455", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/3ad1a259f440f9995a93ecfd9de5b6ad23d88455" + }, + { + "path": "doc", + "mode": "040000", + "type": "tree", + "sha": "30bda54e864ecafd021698ddf75bb9378dd755e5", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/30bda54e864ecafd021698ddf75bb9378dd755e5" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json new file mode 100644 index 0000000000..3cd4ce1100 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json @@ -0,0 +1,15 @@ +{ + "sha": "172349212fb19ffa4f33dcced3263c6963dc750a", + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/172349212fb19ffa4f33dcced3263c6963dc750a", + "tree": [ + { + "path": "README.md", + "mode": "100644", + "type": "blob", + "sha": "958337fe1f522a58e5e7098cc61a2917db1c9643", + "size": 19, + "url": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/958337fe1f522a58e5e7098cc61a2917db1c9643" + } + ], + "truncated": false +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/user-1.json new file mode 100644 index 0000000000..43b7923283 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "davseitsev", + "id": 1793410, + "node_id": "MDQ6VXNlcjE3OTM0MTA=", + "avatar_url": "https://avatars.githubusercontent.com/u/1793410?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/davseitsev", + "html_url": "https://github.com/davseitsev", + "followers_url": "https://api.github.com/users/davseitsev/followers", + "following_url": "https://api.github.com/users/davseitsev/following{/other_user}", + "gists_url": "https://api.github.com/users/davseitsev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davseitsev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davseitsev/subscriptions", + "organizations_url": "https://api.github.com/users/davseitsev/orgs", + "repos_url": "https://api.github.com/users/davseitsev/repos", + "events_url": "https://api.github.com/users/davseitsev/events{/privacy}", + "received_events_url": "https://api.github.com/users/davseitsev/received_events", + "type": "User", + "site_admin": false, + "name": "Dmitriy Avseitsev", + "company": "Wix", + "blog": "", + "location": "Ukraine", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 4, + "public_gists": 0, + "followers": 3, + "following": 2, + "created_at": "2012-05-30T12:32:55Z", + "updated_at": "2023-06-17T08:08:30Z", + "private_gists": 0, + "total_private_repos": 4, + "owned_private_repos": 1, + "disk_usage": 29, + "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/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest-2.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest-2.json new file mode 100644 index 0000000000..389099f536 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest-2.json @@ -0,0 +1,51 @@ +{ + "id": "b245a8a9-81e7-4ca5-a095-277e85a86699", + "name": "repos_hub4j-test-org_ghtreebuildertest", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"75d1ccbff669c56882f6a4f7fd8517c83624f0a2c501ba7c552652ce42d28d25\"", + "Last-Modified": "Sat, 17 Jun 2023 09:21:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "56", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F4:DD38:397C53B:3A04DDB:6491390C" + } + }, + "uuid": "b245a8a9-81e7-4ca5-a095-277e85a86699", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json new file mode 100644 index 0000000000..bc0e3dfe8b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json @@ -0,0 +1,51 @@ +{ + "id": "3ea508b9-5adb-40ec-afe3-d623090f54b6", + "name": "repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_commits_7e888a1cd95c3caf31a16ff21751a06a7feb039f-12.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f423a98200a98ee8f47fc91c05aa2fa94bab34aafe25c055d8adfb48dcf62d97\"", + "Last-Modified": "Sat, 23 Jan 2021 20:20:25 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "66", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FE:CAB0:38E8D78:3971640:64913910" + } + }, + "uuid": "3ea508b9-5adb-40ec-afe3-d623090f54b6", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json new file mode 100644 index 0000000000..eca17c0e11 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json @@ -0,0 +1,51 @@ +{ + "id": "37439e9b-a067-4b6a-8f12-334c323f9672", + "name": "repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/commits/7f9b11d9512f639acc6d48439621026cf8410f3a", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_commits_7f9b11d9512f639acc6d48439621026cf8410f3a-19.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"5e2a20a7a874d008dcc559b084c18a197e0531f4da8808b698ebb6758941787c\"", + "Last-Modified": "Sat, 23 Jan 2021 20:20:25 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "73", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E705:CAB0:38E9325:3971BFD:64913913" + } + }, + "uuid": "37439e9b-a067-4b6a-8f12-334c323f9672", + "persistent": true, + "insertionIndex": 19 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json new file mode 100644 index 0000000000..b343ea7ef0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json @@ -0,0 +1,54 @@ +{ + "id": "c85bcca2-d182-42a1-bc5b-b01c002b1692", + "name": "repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/contents/data/val1.dat", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-11.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74\"", + "Last-Modified": "Sat, 23 Jan 2021 20:20:25 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "65", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FD:5618:3ACA2CA:3B52B8A:64913910" + } + }, + "uuid": "c85bcca2-d182-42a1-bc5b-b01c002b1692", + "persistent": true, + "scenarioName": "scenario-3-repos-hub4j-test-org-GHTreeBuilderTest-contents-data-val1.dat", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-3-repos-hub4j-test-org-GHTreeBuilderTest-contents-data-val1.dat-2", + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-20.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-20.json new file mode 100644 index 0000000000..8981eddc73 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat-20.json @@ -0,0 +1,47 @@ +{ + "id": "178b3392-4b27-4263-b453-63f7b92cd78f", + "name": "repos_hub4j-test-org_ghtreebuildertest_contents_data_val1dat", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/contents/data/val1.dat", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 404, + "body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-repository-content\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "74", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding, Accept, X-Requested-With", + "X-GitHub-Request-Id": "E706:C35C:34F5A75:357E34F:64913913" + } + }, + "uuid": "178b3392-4b27-4263-b453-63f7b92cd78f", + "persistent": true, + "scenarioName": "scenario-3-repos-hub4j-test-org-GHTreeBuilderTest-contents-data-val1.dat", + "requiredScenarioState": "scenario-3-repos-hub4j-test-org-GHTreeBuilderTest-contents-data-val1.dat-2", + "insertionIndex": 20 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json new file mode 100644 index 0000000000..6217dffd7c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json @@ -0,0 +1,54 @@ +{ + "id": "91da6707-80ba-4686-9155-4c4c7368f28c", + "name": "repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-10.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"fbbc875b17d1e17da06b4ee8fda46e2596c41f3c\"", + "Last-Modified": "Sat, 23 Jan 2021 20:20:25 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "64", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FC:CAB0:38E8BF8:39714CD:64913910" + } + }, + "uuid": "91da6707-80ba-4686-9155-4c4c7368f28c", + "persistent": true, + "scenarioName": "scenario-2-repos-hub4j-test-org-GHTreeBuilderTest-contents-doc-readme.txt", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-2-repos-hub4j-test-org-GHTreeBuilderTest-contents-doc-readme.txt-2", + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json new file mode 100644 index 0000000000..fca434b8b8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json @@ -0,0 +1,53 @@ +{ + "id": "b8c1379e-3668-459d-9a07-bb1f80773ebe", + "name": "repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/contents/doc/readme.txt", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_contents_doc_readmetxt-18.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"fbbc875b17d1e17da06b4ee8fda46e2596c41f3c\"", + "Last-Modified": "Sat, 23 Jan 2021 20:20:25 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "72", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E704:2866:377A46A:3802D1D:64913913" + } + }, + "uuid": "b8c1379e-3668-459d-9a07-bb1f80773ebe", + "persistent": true, + "scenarioName": "scenario-2-repos-hub4j-test-org-GHTreeBuilderTest-contents-doc-readme.txt", + "requiredScenarioState": "scenario-2-repos-hub4j-test-org-GHTreeBuilderTest-contents-doc-readme.txt-2", + "insertionIndex": 18 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-5.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-5.json new file mode 100644 index 0000000000..124b560cac --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-5.json @@ -0,0 +1,58 @@ +{ + "id": "6be43f18-f690-4dcf-97db-4a7f0dc3992f", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_blobs", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"encoding\":\"base64\",\"content\":\"VGhhbmtzIGZvciB1c2luZyBvdXIgYXBwbGljYXRpb24hCg==\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "body": "{\"sha\":\"fbbc875b17d1e17da06b4ee8fda46e2596c41f3c\",\"url\":\"https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"163f83bbd1173801e13129b664eefeca4bcffadac061620acf689bf7c9ca2cfc\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "59", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F7:2F49:B6BC1F:B99013:6491390D", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/fbbc875b17d1e17da06b4ee8fda46e2596c41f3c" + } + }, + "uuid": "6be43f18-f690-4dcf-97db-4a7f0dc3992f", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-6.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-6.json new file mode 100644 index 0000000000..902afde443 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_blobs-6.json @@ -0,0 +1,58 @@ +{ + "id": "491e1e6a-996e-4ce8-9178-93198dcb077e", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_blobs", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"encoding\":\"base64\",\"content\":\"AQID\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "body": "{\"sha\":\"aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74\",\"url\":\"https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74\"}", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"ece9a63bb7a10d9be9df978bd3030b47be2b2a1e01cc5aa6fae0ad83e3cc3998\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "60", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F8:12658:3A94A56:3B1D323:6491390E", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/blobs/aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74" + } + }, + "uuid": "491e1e6a-996e-4ce8-9178-93198dcb077e", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json new file mode 100644 index 0000000000..60c4951474 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json @@ -0,0 +1,58 @@ +{ + "id": "4157028e-c59c-4e4a-8e69-942880061268", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_commits", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/commits", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"committer\":{\"name\":\"committer\",\"email\":\"committer@committer.com\",\"date\":\"2021-01-23T20:20:25Z\"},\"author\":{\"name\":\"author\",\"email\":\"author@author.com\",\"date\":\"2021-01-23T20:20:25Z\"},\"tree\":\"f9a619cb835ac407e0a464618fc59386be70bd63\",\"message\":\"Add files\",\"parents\":[\"7e888a1cd95c3caf31a16ff21751a06a7feb039f\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_commits-16.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"3238fa5eff984f4868d1c525a2a58bc3fbe0368600b2ab84600f1e0370a548d1\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "70", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E702:2D3A:1F58940:1FBC471:64913912", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7f9b11d9512f639acc6d48439621026cf8410f3a" + } + }, + "uuid": "4157028e-c59c-4e4a-8e69-942880061268", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json new file mode 100644 index 0000000000..e52e217bc9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json @@ -0,0 +1,58 @@ +{ + "id": "ae17f42d-677c-4d51-97ee-a431fa113296", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_commits", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/commits", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"committer\":{\"name\":\"committer\",\"email\":\"committer@committer.com\",\"date\":\"2021-01-23T20:20:25Z\"},\"author\":{\"name\":\"author\",\"email\":\"author@author.com\",\"date\":\"2021-01-23T20:20:25Z\"},\"tree\":\"0efbfcf79def8e437d825e0116def4be6be56026\",\"message\":\"Add files\",\"parents\":[\"172349212fb19ffa4f33dcced3263c6963dc750a\"]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_commits-8.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"9550476a519cba23cbf802381ee9325cacbcb788ce7932314fbad47e7c23e813\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "62", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FA:DD38:397CB0C:3A053BA:6491390F", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/commits/7e888a1cd95c3caf31a16ff21751a06a7feb039f" + } + }, + "uuid": "ae17f42d-677c-4d51-97ee-a431fa113296", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json new file mode 100644 index 0000000000..e3e689b399 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json @@ -0,0 +1,54 @@ +{ + "id": "a007310d-5f4d-46c4-bee5-e85b006dd505", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-13.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"bba22ee793ee364dfd8404230d5d7b55b227def742a402a50d03bbe2dbed74f0\"", + "Last-Modified": "Sat, 17 Jun 2023 09:21:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "67", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FF:C35C:34F54F4:357DDA7:64913911" + } + }, + "uuid": "a007310d-5f4d-46c4-bee5-e85b006dd505", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-GHTreeBuilderTest-git-refs-heads-main", + "requiredScenarioState": "scenario-1-repos-hub4j-test-org-GHTreeBuilderTest-git-refs-heads-main-2", + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json new file mode 100644 index 0000000000..6499c6f655 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json @@ -0,0 +1,57 @@ +{ + "id": "8ac43b56-e027-48ee-8152-05ad21f3190a", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "method": "PATCH", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"force\":false,\"sha\":\"7f9b11d9512f639acc6d48439621026cf8410f3a\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-17.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"d2080b37f2f5091ab6fdb33a43b7545e716e14235ed485849cace3cae73c230f\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "71", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E703:E5A4:3923A92:39AC37A:64913912" + } + }, + "uuid": "8ac43b56-e027-48ee-8152-05ad21f3190a", + "persistent": true, + "insertionIndex": 17 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json new file mode 100644 index 0000000000..6896999f3d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json @@ -0,0 +1,55 @@ +{ + "id": "f6c2c882-fd90-4cac-bf53-a92a7cb4d0e4", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"afd11955e216e7cb970f6a80de3ed846d9e5374ec870029f916fd41e464bd367\"", + "Last-Modified": "Tue, 20 Jun 2023 05:28:20 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "57", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F5:2F49:B6BA8B:B98E55:6491390D" + } + }, + "uuid": "f6c2c882-fd90-4cac-bf53-a92a7cb4d0e4", + "persistent": true, + "scenarioName": "scenario-1-repos-hub4j-test-org-GHTreeBuilderTest-git-refs-heads-main", + "requiredScenarioState": "Started", + "newScenarioState": "scenario-1-repos-hub4j-test-org-GHTreeBuilderTest-git-refs-heads-main-2", + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json new file mode 100644 index 0000000000..e31afa11bf --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json @@ -0,0 +1,57 @@ +{ + "id": "69a41ff0-b112-4fa3-930f-097886aba03d", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/refs/heads/main", + "method": "PATCH", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"force\":false,\"sha\":\"7e888a1cd95c3caf31a16ff21751a06a7feb039f\"}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_refs_heads_main-9.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"bba22ee793ee364dfd8404230d5d7b55b227def742a402a50d03bbe2dbed74f0\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "repo", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "63", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6FB:C35C:34F51BF:357DA6E:6491390F" + } + }, + "uuid": "69a41ff0-b112-4fa3-930f-097886aba03d", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json new file mode 100644 index 0000000000..2f184b258c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json @@ -0,0 +1,58 @@ +{ + "id": "5d86fc86-f3cc-4939-bc99-8c5b59b5c2e3", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_trees", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/trees", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"base_tree\":\"0efbfcf79def8e437d825e0116def4be6be56026\",\"tree\":[{\"path\":\"data/val1.dat\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":null}]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_trees-15.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"7994c86d53091fb0af7cab2c7eeab20a96a1c7d5c3003ab3999a492fa6252cc6\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "69", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E701:12658:3A952B2:3B1DBA7:64913911", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/f9a619cb835ac407e0a464618fc59386be70bd63" + } + }, + "uuid": "5d86fc86-f3cc-4939-bc99-8c5b59b5c2e3", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json new file mode 100644 index 0000000000..82e757c5c8 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json @@ -0,0 +1,58 @@ +{ + "id": "c7f39a2b-e126-4a9a-96a5-f3ae55c6c333", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_trees", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/trees", + "method": "POST", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"base_tree\":\"172349212fb19ffa4f33dcced3263c6963dc750a\",\"tree\":[{\"path\":\"doc/readme.txt\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"fbbc875b17d1e17da06b4ee8fda46e2596c41f3c\"},{\"path\":\"data/val1.dat\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"aed2973e4b8a7ff1b30ff5c4751e5a2b38989e74\"}]}", + "ignoreArrayOrder": true, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 201, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_trees-7.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "\"cc5396cc7dbc55b26008e889b238f9df01a65a0142ff0627a62834f9dfaa44f1\"", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "61", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F9:6FC5:3DA3361:3E2BC16:6491390E", + "Location": "https://api.github.com/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026" + } + }, + "uuid": "c7f39a2b-e126-4a9a-96a5-f3ae55c6c333", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json new file mode 100644 index 0000000000..fcd59b25b3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json @@ -0,0 +1,51 @@ +{ + "id": "31069baa-d4ff-44b5-b82f-ee9be05e8467", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/0efbfcf79def8e437d825e0116def4be6be56026", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_trees_0efbfcf79def8e437d825e0116def4be6be56026-14.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=86400, s-maxage=86400", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"cc5396cc7dbc55b26008e889b238f9df01a65a0142ff0627a62834f9dfaa44f1\"", + "Last-Modified": "Sat, 17 Jun 2023 09:21:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "68", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E700:B799:391DA3C:39A6308:64913911" + } + }, + "uuid": "31069baa-d4ff-44b5-b82f-ee9be05e8467", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json new file mode 100644 index 0000000000..b7bb86ffd5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json @@ -0,0 +1,51 @@ +{ + "id": "c6e73b5b-8987-4bf1-a132-284d5b8b4d6b", + "name": "repos_hub4j-test-org_ghtreebuildertest_git_trees_main", + "request": { + "url": "/repos/hub4j-test-org/GHTreeBuilderTest/git/trees/main?recursive=1", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j-test-org_ghtreebuildertest_git_trees_main-4.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"5f04be028cd2ad3a5e1019d3393811a6e086293c7b6d13ad93ff7e57881f8701\"", + "Last-Modified": "Sat, 17 Jun 2023 09:21:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "58", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F6:12914:39240C1:39AC978:6491390D" + } + }, + "uuid": "c6e73b5b-8987-4bf1-a132-284d5b8b4d6b", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/user-1.json new file mode 100644 index 0000000000..f33206a5c1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHTreeBuilderTest/wiremock/testDelete/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "baed7d1b-1826-40d0-9146-537f7369215d", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 20 Jun 2023 05:28:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"8e03f3c7f4bfa9a272abf7c471c1b788d8fcfa9f183f51d537df9097c70bc1e2\"", + "Last-Modified": "Sat, 17 Jun 2023 08:08:30 GMT", + "X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2023-06-24 09:37:03 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1687242459", + "X-RateLimit-Used": "49", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "E6F2:E5A4:39227DA:39AB07F:6491390A" + } + }, + "uuid": "baed7d1b-1826-40d0-9146-537f7369215d", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..43ee270874 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/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/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/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/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..77895afe2c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f01", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/hub4j/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/hub4j/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "bad_cert", + "signature": "-----BEGIN SIGNED MESSAGE-----\nMIIFdQYJKoZIhvcNAQcCoIIFZjCCBWICAQExDTALBglghkgBZQMEAgEwCwYJKoZI\nhvcNAQcBoIIDejCCA3YwggJeoAMCAQICAQIwDQYJKoZIhvcNAQELBQAwKjEbMBkG\nA1UEAwwSQXN0cm9UbGFsb2PigJlzIENBMQswCQYDVQQGEwJVUzAeFw0yMzA5MTgy\nMzI2MDlaFw0yNDA5MTcyMzI2MDlaMEYxFDASBgNVBAMMC0FzdHJvVGxhbG9jMQsw\nCQYDVQQGEwJVUzEhMB8GCSqGSIb3DQEJARYSMHhUbGFsb2NAZ21haWwuY29tMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Zq+N5v68htABs4ZLPORns/F\nzixnI+6L+WaVGeQFzxIBs9zsm9IRGJ4xoMBPSg1BuoilRXzsQoCH6+5zyQ4jaHMa\nHBBEijVM7kor3Um+35KdYh79nIY7ZQoDRypLF02FiqfNjhN8Nm8ciNf2EUkiGIcj\n/+TPhVFMxnwlZ2SmSJoMBE5pkDBllb/8kfxgenSoVLXaOigYJ1It6AqH2L8Ju9pa\nJ1zJGu2edjN6xi/0yjzZ7CmPFbnWcY5flJfMqdaj0Po3dMwYKYK07rE7KQHc8wFT\ngAUtQNtJkGBjEcTBh1B7SUsnJ/x4XcSQwOMxPNSm4Esn2RWanJYunez75eCWlwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcD\nBDAdBgNVHQ4EFgQUSi5d7oqzSYNhpeG4I2VNF9j881UwHwYDVR0jBBgwFoAULCWl\nbibBiKOX/6M3RWgIlSPM7dcwHQYDVR0RBBYwFIESMHhUbGFsb2NAZ21haWwuY29t\nMA0GCSqGSIb3DQEBCwUAA4IBAQDSn3caORjlSXCSm8ZY1uAbG+IngvEooIJvbl+y\n0yglPA3pkWybXxLfvayJVRGtNgLambnPpulzZmdwjj7qSTzd9K/+OIsI2qjNrZZ+\napXJLhlfabNHzydj0y0DUWgbtKzQ1SVhWgglHaCp440UmVAi0PtsMy3F1S5S0HlZ\n80V1CE3r7UYsC64GG3CmyXVf5MB+pzPriE729Gglig5z6rq8F+GNk5hJW7tOKBRb\nCyXFkqbkMWHPJ/CP5wrFjrEITsn8fIhlJsYRIAGzTnffCOs9i3rMpUTXRBOwSVMB\nI1I3VPm+WxVE7O9NY7TGBDe7010D4DorTNUPYo8xsPtKYyrpMYIBwTCCAb0CAQEw\nLzAqMRswGQYDVQQDDBJBc3Ryb1RsYWxvY+KAmXMgQ0ExCzAJBgNVBAYTAlVTAgEC\nMAsGCWCGSAFlAwQCAaBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI\nhvcNAQkFMQ8XDTIzMDkxODIzMjg1MFowLwYJKoZIhvcNAQkEMSIEIIFHI8Ick3Tu\nBlnfTU6v24ls8D+jGkpQoDK+MF4rk5iTMAsGCSqGSIb3DQEBCwSCAQC4nIUEB/bR\ngeXnO7KdtqRFn/slCNTKZaQObsyL7C7cmNYAlgQAYj/qOBhKGMd3ZAFHRUroCiCy\n5GPs1sEnPKT1Bh7E7HJbpfdMXZINxoiRBrwQpAD/UKxk6etF5qvtAwDJaFMZiTMh\nd6tPNVBcThhUglSqqQFT3BKE9z5KTGwonMeqZlyf/EpXRBn0YcaoWvcAzaahMBQw\nUPwwEtU3FVyYBbLQee0SoYDsddEjdaNN/37auMVIltYmKNq/A4KhJWduTGFcaD/k\nfcXIzhzBi4vk1No6y2ftDgbivxP3MVQyf1tIfD1fv9cw/55JnDRA3IXkQRc+yyUG\nGmHXpKHhqNKm\n-----END SIGNED MESSAGE-----", + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "html_url": "https://github.com/hub4j/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f01", + "comments_url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01/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/hub4j/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/hub4j/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/hub4j/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "raw_url": "https://github.com/hub4j/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f01", + "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/GHVerificationReasonTest/wiremock/testBadCert/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/user-1.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/__files/user-1.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/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..80fb7dfa4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,48 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.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/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..6b5904361c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,48 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01", + "request": { + "url": "/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.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/GHVerificationReasonTest/wiremock/testBadCert/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/user-1.json new file mode 100644 index 0000000000..7c0606ff2f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadCert/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.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/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..43ee270874 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/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/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/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/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..8ec18c631d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f01", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/hub4j/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/hub4j/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "malformed_sig", + "signature": "-----BEGIN SIGNED MESSAGE-----\nMIIFdQYJKoZIhvcNAQcCoIIFZjCCBWICAQExDTALBglghkgBZQMEAgEwCwYJKoZI\nhvcNAQcBoIIDejCCA3YwggJeoAMCAQICAQIwDQYJKoZIhvcNAQELBQAwKjEbMBkG\nA1UEAwwSQXN0cm9UbGFsb2PigJlzIENBMQswCQYDVQQGEwJVUzAeFw0yMzA5MTgy\nMzI2MDlaFw0yNDA5MTcyMzI2MDlaMEYxFDASBgNVBAMMC0FzdHJvVGxhbG9jMQsw\nCQYDVQQGEwJVUzEhMB8GCSqGSIb3DQEJARYSMHhUbGFsb2NAZ21haWwuY29tMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Zq+N5v68htABs4ZLPORns/F\nzixnI+6L+WaVGeQFzxIBs9zsm9IRGJ4xoMBPSg1BuoilRXzsQoCH6+5zyQ4jaHMa\nHBBEijVM7kor3Um+35KdYh79nIY7ZQoDRypLF02FiqfNjhN8Nm8ciNf2EUkiGIcj\n/+TPhVFMxnwlZ2SmSJoMBE5pkDBllb/8kfxgenSoVLXaOigYJ1It6AqH2L8Ju9pa\nJ1zJGu2edjN6xi/0yjzZ7CmPFbnWcY5flJfMqdaj0Po3dMwYKYK07rE7KQHc8wFT\ngAUtQNtJkGBjEcTBh1B7SUsnJ/x4XcSQwOMxPNSm4Esn2RWanJYunez75eCWlwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcD\nBDAdBgNVHQ4EFgQUSi5d7oqzSYNhpeG4I2VNF9j881UwHwYDVR0jBBgwFoAULCWl\nbibBiKOX/6M3RWgIlSPM7dcwHQYDVR0RBBYwFIESMHhUbGFsb2NAZ21haWwuY29t\nMA0GCSqGSIb3DQEBCwUAA4IBAQDSn3caORjlSXCSm8ZY1uAbG+IngvEooIJvbl+y\n0yglPA3pkWybXxLfvayJVRGtNgLambnPpulzZmdwjj7qSTzd9K/+OIsI2qjNrZZ+\napXJLhlfabNHzydj0y0DUWgbtKzQ1SVhWgglHaCp440UmVAi0PtsMy3F1S5S0HlZ\n80V1CE3r7UYsC64GG3CmyXVf5MB+pzPriE729Gglig5z6rq8F+GNk5hJW7tOKBRb\nCyXFkqbkMWHPJ/CP5wrFjrEITsn8fIhlJsYRIAGzTnffCOs9i3rMpUTXRBOwSVMB\nI1I3VPm+WxVE7O9NY7TGBDe7010D4DorTNUPYo8xsPtKYyrpMYIBwTCCAb0CAQEw\nLzAqMRswGQYDVQQDDBJBc3Ryb1RsYWxvY+KAmXMgQ0ExCzAJBgNVBAYTAlVTAgEC\nMAsGCWCGSAFlAwQCAaBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI\nhvcNAQkFMQ8XDTIzMDkxODIzMjg1MFowLwYJKoZIhvcNAQkEMSIEIIFHI8Ick3Tu\nBlnfTU6v24ls8D+jGkpQoDK+MF4rk5iTMAsGCSqGSIb3DQEBCwSCAQC4nIUEB/bR\ngeXnO7KdtqRFn/slCNTKZaQObsyL7C7cmNYAlgQAYj/qOBhKGMd3ZAFHRUroCiCy\n5GPs1sEnPKT1Bh7E7HJbpfdMXZINxoiRBrwQpAD/UKxk6etF5qvtAwDJaFMZiTMh\nd6tPNVBcThhUglSqqQFT3BKE9z5KTGwonMeqZlyf/EpXRBn0YcaoWvcAzaahMBQw\nUPwwEtU3FVyYBbLQee0SoYDsddEjdaNN/37auMVIltYmKNq/A4KhJWduTGFcaD/k\nfcXIzhzBi4vk1No6y2ftDgbivxP3MVQyf1tIfD1fv9cw/55JnDRA3IXkQRc+yyUG\nGmHXpKHhqNKm\n-----END SIGNED MESSAGE-----", + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "html_url": "https://github.com/hub4j/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f01", + "comments_url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01/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/hub4j/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/hub4j/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/hub4j/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "raw_url": "https://github.com/hub4j/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f01", + "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/GHVerificationReasonTest/wiremock/testMalformedSig/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/user-1.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/__files/user-1.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/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..80fb7dfa4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,48 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.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/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..6b5904361c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,48 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01", + "request": { + "url": "/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.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/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/user-1.json new file mode 100644 index 0000000000..7c0606ff2f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSig/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.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/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..43ee270874 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/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/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/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/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..4f60cb235f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f01", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/hub4j/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/hub4j/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "ocsp_error", + "signature": "-----BEGIN SIGNED MESSAGE-----\nMIIFdQYJKoZIhvcNAQcCoIIFZjCCBWICAQExDTALBglghkgBZQMEAgEwCwYJKoZI\nhvcNAQcBoIIDejCCA3YwggJeoAMCAQICAQIwDQYJKoZIhvcNAQELBQAwKjEbMBkG\nA1UEAwwSQXN0cm9UbGFsb2PigJlzIENBMQswCQYDVQQGEwJVUzAeFw0yMzA5MTgy\nMzI2MDlaFw0yNDA5MTcyMzI2MDlaMEYxFDASBgNVBAMMC0FzdHJvVGxhbG9jMQsw\nCQYDVQQGEwJVUzEhMB8GCSqGSIb3DQEJARYSMHhUbGFsb2NAZ21haWwuY29tMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Zq+N5v68htABs4ZLPORns/F\nzixnI+6L+WaVGeQFzxIBs9zsm9IRGJ4xoMBPSg1BuoilRXzsQoCH6+5zyQ4jaHMa\nHBBEijVM7kor3Um+35KdYh79nIY7ZQoDRypLF02FiqfNjhN8Nm8ciNf2EUkiGIcj\n/+TPhVFMxnwlZ2SmSJoMBE5pkDBllb/8kfxgenSoVLXaOigYJ1It6AqH2L8Ju9pa\nJ1zJGu2edjN6xi/0yjzZ7CmPFbnWcY5flJfMqdaj0Po3dMwYKYK07rE7KQHc8wFT\ngAUtQNtJkGBjEcTBh1B7SUsnJ/x4XcSQwOMxPNSm4Esn2RWanJYunez75eCWlwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcD\nBDAdBgNVHQ4EFgQUSi5d7oqzSYNhpeG4I2VNF9j881UwHwYDVR0jBBgwFoAULCWl\nbibBiKOX/6M3RWgIlSPM7dcwHQYDVR0RBBYwFIESMHhUbGFsb2NAZ21haWwuY29t\nMA0GCSqGSIb3DQEBCwUAA4IBAQDSn3caORjlSXCSm8ZY1uAbG+IngvEooIJvbl+y\n0yglPA3pkWybXxLfvayJVRGtNgLambnPpulzZmdwjj7qSTzd9K/+OIsI2qjNrZZ+\napXJLhlfabNHzydj0y0DUWgbtKzQ1SVhWgglHaCp440UmVAi0PtsMy3F1S5S0HlZ\n80V1CE3r7UYsC64GG3CmyXVf5MB+pzPriE729Gglig5z6rq8F+GNk5hJW7tOKBRb\nCyXFkqbkMWHPJ/CP5wrFjrEITsn8fIhlJsYRIAGzTnffCOs9i3rMpUTXRBOwSVMB\nI1I3VPm+WxVE7O9NY7TGBDe7010D4DorTNUPYo8xsPtKYyrpMYIBwTCCAb0CAQEw\nLzAqMRswGQYDVQQDDBJBc3Ryb1RsYWxvY+KAmXMgQ0ExCzAJBgNVBAYTAlVTAgEC\nMAsGCWCGSAFlAwQCAaBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI\nhvcNAQkFMQ8XDTIzMDkxODIzMjg1MFowLwYJKoZIhvcNAQkEMSIEIIFHI8Ick3Tu\nBlnfTU6v24ls8D+jGkpQoDK+MF4rk5iTMAsGCSqGSIb3DQEBCwSCAQC4nIUEB/bR\ngeXnO7KdtqRFn/slCNTKZaQObsyL7C7cmNYAlgQAYj/qOBhKGMd3ZAFHRUroCiCy\n5GPs1sEnPKT1Bh7E7HJbpfdMXZINxoiRBrwQpAD/UKxk6etF5qvtAwDJaFMZiTMh\nd6tPNVBcThhUglSqqQFT3BKE9z5KTGwonMeqZlyf/EpXRBn0YcaoWvcAzaahMBQw\nUPwwEtU3FVyYBbLQee0SoYDsddEjdaNN/37auMVIltYmKNq/A4KhJWduTGFcaD/k\nfcXIzhzBi4vk1No6y2ftDgbivxP3MVQyf1tIfD1fv9cw/55JnDRA3IXkQRc+yyUG\nGmHXpKHhqNKm\n-----END SIGNED MESSAGE-----", + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "html_url": "https://github.com/hub4j/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f01", + "comments_url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01/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/hub4j/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/hub4j/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/hub4j/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "raw_url": "https://github.com/hub4j/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f01", + "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/GHVerificationReasonTest/wiremock/testOcspError/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/user-1.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/__files/user-1.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/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..80fb7dfa4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,48 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.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/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..6b5904361c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,48 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01", + "request": { + "url": "/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.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/GHVerificationReasonTest/wiremock/testOcspError/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/user-1.json new file mode 100644 index 0000000000..7c0606ff2f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOcspError/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.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/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..43ee270874 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/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/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/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/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..c5e2c3995c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f01", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/hub4j/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/hub4j/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "ocsp_pending", + "signature": "-----BEGIN SIGNED MESSAGE-----\nMIIFdQYJKoZIhvcNAQcCoIIFZjCCBWICAQExDTALBglghkgBZQMEAgEwCwYJKoZI\nhvcNAQcBoIIDejCCA3YwggJeoAMCAQICAQIwDQYJKoZIhvcNAQELBQAwKjEbMBkG\nA1UEAwwSQXN0cm9UbGFsb2PigJlzIENBMQswCQYDVQQGEwJVUzAeFw0yMzA5MTgy\nMzI2MDlaFw0yNDA5MTcyMzI2MDlaMEYxFDASBgNVBAMMC0FzdHJvVGxhbG9jMQsw\nCQYDVQQGEwJVUzEhMB8GCSqGSIb3DQEJARYSMHhUbGFsb2NAZ21haWwuY29tMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Zq+N5v68htABs4ZLPORns/F\nzixnI+6L+WaVGeQFzxIBs9zsm9IRGJ4xoMBPSg1BuoilRXzsQoCH6+5zyQ4jaHMa\nHBBEijVM7kor3Um+35KdYh79nIY7ZQoDRypLF02FiqfNjhN8Nm8ciNf2EUkiGIcj\n/+TPhVFMxnwlZ2SmSJoMBE5pkDBllb/8kfxgenSoVLXaOigYJ1It6AqH2L8Ju9pa\nJ1zJGu2edjN6xi/0yjzZ7CmPFbnWcY5flJfMqdaj0Po3dMwYKYK07rE7KQHc8wFT\ngAUtQNtJkGBjEcTBh1B7SUsnJ/x4XcSQwOMxPNSm4Esn2RWanJYunez75eCWlwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcD\nBDAdBgNVHQ4EFgQUSi5d7oqzSYNhpeG4I2VNF9j881UwHwYDVR0jBBgwFoAULCWl\nbibBiKOX/6M3RWgIlSPM7dcwHQYDVR0RBBYwFIESMHhUbGFsb2NAZ21haWwuY29t\nMA0GCSqGSIb3DQEBCwUAA4IBAQDSn3caORjlSXCSm8ZY1uAbG+IngvEooIJvbl+y\n0yglPA3pkWybXxLfvayJVRGtNgLambnPpulzZmdwjj7qSTzd9K/+OIsI2qjNrZZ+\napXJLhlfabNHzydj0y0DUWgbtKzQ1SVhWgglHaCp440UmVAi0PtsMy3F1S5S0HlZ\n80V1CE3r7UYsC64GG3CmyXVf5MB+pzPriE729Gglig5z6rq8F+GNk5hJW7tOKBRb\nCyXFkqbkMWHPJ/CP5wrFjrEITsn8fIhlJsYRIAGzTnffCOs9i3rMpUTXRBOwSVMB\nI1I3VPm+WxVE7O9NY7TGBDe7010D4DorTNUPYo8xsPtKYyrpMYIBwTCCAb0CAQEw\nLzAqMRswGQYDVQQDDBJBc3Ryb1RsYWxvY+KAmXMgQ0ExCzAJBgNVBAYTAlVTAgEC\nMAsGCWCGSAFlAwQCAaBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI\nhvcNAQkFMQ8XDTIzMDkxODIzMjg1MFowLwYJKoZIhvcNAQkEMSIEIIFHI8Ick3Tu\nBlnfTU6v24ls8D+jGkpQoDK+MF4rk5iTMAsGCSqGSIb3DQEBCwSCAQC4nIUEB/bR\ngeXnO7KdtqRFn/slCNTKZaQObsyL7C7cmNYAlgQAYj/qOBhKGMd3ZAFHRUroCiCy\n5GPs1sEnPKT1Bh7E7HJbpfdMXZINxoiRBrwQpAD/UKxk6etF5qvtAwDJaFMZiTMh\nd6tPNVBcThhUglSqqQFT3BKE9z5KTGwonMeqZlyf/EpXRBn0YcaoWvcAzaahMBQw\nUPwwEtU3FVyYBbLQee0SoYDsddEjdaNN/37auMVIltYmKNq/A4KhJWduTGFcaD/k\nfcXIzhzBi4vk1No6y2ftDgbivxP3MVQyf1tIfD1fv9cw/55JnDRA3IXkQRc+yyUG\nGmHXpKHhqNKm\n-----END SIGNED MESSAGE-----", + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "html_url": "https://github.com/hub4j/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f01", + "comments_url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01/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/hub4j/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/hub4j/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/hub4j/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "raw_url": "https://github.com/hub4j/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f01", + "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/GHVerificationReasonTest/wiremock/testOscpPending/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/user-1.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/__files/user-1.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/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..80fb7dfa4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,48 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.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/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..6b5904361c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,48 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01", + "request": { + "url": "/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.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/GHVerificationReasonTest/wiremock/testOscpPending/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/user-1.json new file mode 100644 index 0000000000..7c0606ff2f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpPending/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.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/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..43ee270874 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api-2.json @@ -0,0 +1,130 @@ +{ + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "hub4j/github-api", + "private": false, + "owner": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/hub4j/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/hub4j/github-api", + "forks_url": "https://api.github.com/repos/hub4j/github-api/forks", + "keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hub4j/github-api/teams", + "hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/hub4j/github-api/events", + "assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/hub4j/github-api/tags", + "blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hub4j/github-api/languages", + "stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription", + "commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hub4j/github-api/merges", + "archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads", + "issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/hub4j/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/hub4j/github-api.git", + "ssh_url": "git@github.com:hub4j/github-api.git", + "clone_url": "https://github.com/hub4j/github-api.git", + "svn_url": "https://github.com/hub4j/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": "main", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "hub4j", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hub4j", + "html_url": "https://github.com/hub4j", + "followers_url": "https://api.github.com/users/hub4j/followers", + "following_url": "https://api.github.com/users/hub4j/following{/other_user}", + "gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hub4j/subscriptions", + "organizations_url": "https://api.github.com/users/hub4j/orgs", + "repos_url": "https://api.github.com/users/hub4j/repos", + "events_url": "https://api.github.com/users/hub4j/events{/privacy}", + "received_events_url": "https://api.github.com/users/hub4j/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/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..26aa4fc983 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,98 @@ +{ + "sha": "86a2e245aa6d71d54923655066049d9e21a15f01", + "node_id": "MDY6Q29tbWl0NjE3MjEwOjg2YTJlMjQ1YWE2ZDcxZDU0OTIzNjU1MDY2MDQ5ZDllMjFhMTVmMjM=", + "commit": { + "author": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "committer": { + "name": "Sourabh Parkala", + "email": "sourabh.sarvotham.parkala@sap.com", + "date": "2010-04-19T04:12:41Z" + }, + "message": "doc", + "tree": { + "sha": "17ed4173aeb2e98c93216e8b6e16138dc7f8cd91", + "url": "https://api.github.com/repos/hub4j/github-api/git/trees/17ed4173aeb2e98c93216e8b6e16138dc7f8cd91" + }, + "url": "https://api.github.com/repos/hub4j/github-api/git/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "ocsp_revoked", + "signature": "-----BEGIN SIGNED MESSAGE-----\nMIIFdQYJKoZIhvcNAQcCoIIFZjCCBWICAQExDTALBglghkgBZQMEAgEwCwYJKoZI\nhvcNAQcBoIIDejCCA3YwggJeoAMCAQICAQIwDQYJKoZIhvcNAQELBQAwKjEbMBkG\nA1UEAwwSQXN0cm9UbGFsb2PigJlzIENBMQswCQYDVQQGEwJVUzAeFw0yMzA5MTgy\nMzI2MDlaFw0yNDA5MTcyMzI2MDlaMEYxFDASBgNVBAMMC0FzdHJvVGxhbG9jMQsw\nCQYDVQQGEwJVUzEhMB8GCSqGSIb3DQEJARYSMHhUbGFsb2NAZ21haWwuY29tMIIB\nIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Zq+N5v68htABs4ZLPORns/F\nzixnI+6L+WaVGeQFzxIBs9zsm9IRGJ4xoMBPSg1BuoilRXzsQoCH6+5zyQ4jaHMa\nHBBEijVM7kor3Um+35KdYh79nIY7ZQoDRypLF02FiqfNjhN8Nm8ciNf2EUkiGIcj\n/+TPhVFMxnwlZ2SmSJoMBE5pkDBllb/8kfxgenSoVLXaOigYJ1It6AqH2L8Ju9pa\nJ1zJGu2edjN6xi/0yjzZ7CmPFbnWcY5flJfMqdaj0Po3dMwYKYK07rE7KQHc8wFT\ngAUtQNtJkGBjEcTBh1B7SUsnJ/x4XcSQwOMxPNSm4Esn2RWanJYunez75eCWlwID\nAQABo4GKMIGHMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcD\nBDAdBgNVHQ4EFgQUSi5d7oqzSYNhpeG4I2VNF9j881UwHwYDVR0jBBgwFoAULCWl\nbibBiKOX/6M3RWgIlSPM7dcwHQYDVR0RBBYwFIESMHhUbGFsb2NAZ21haWwuY29t\nMA0GCSqGSIb3DQEBCwUAA4IBAQDSn3caORjlSXCSm8ZY1uAbG+IngvEooIJvbl+y\n0yglPA3pkWybXxLfvayJVRGtNgLambnPpulzZmdwjj7qSTzd9K/+OIsI2qjNrZZ+\napXJLhlfabNHzydj0y0DUWgbtKzQ1SVhWgglHaCp440UmVAi0PtsMy3F1S5S0HlZ\n80V1CE3r7UYsC64GG3CmyXVf5MB+pzPriE729Gglig5z6rq8F+GNk5hJW7tOKBRb\nCyXFkqbkMWHPJ/CP5wrFjrEITsn8fIhlJsYRIAGzTnffCOs9i3rMpUTXRBOwSVMB\nI1I3VPm+WxVE7O9NY7TGBDe7010D4DorTNUPYo8xsPtKYyrpMYIBwTCCAb0CAQEw\nLzAqMRswGQYDVQQDDBJBc3Ryb1RsYWxvY+KAmXMgQ0ExCzAJBgNVBAYTAlVTAgEC\nMAsGCWCGSAFlAwQCAaBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI\nhvcNAQkFMQ8XDTIzMDkxODIzMjg1MFowLwYJKoZIhvcNAQkEMSIEIIFHI8Ick3Tu\nBlnfTU6v24ls8D+jGkpQoDK+MF4rk5iTMAsGCSqGSIb3DQEBCwSCAQC4nIUEB/bR\ngeXnO7KdtqRFn/slCNTKZaQObsyL7C7cmNYAlgQAYj/qOBhKGMd3ZAFHRUroCiCy\n5GPs1sEnPKT1Bh7E7HJbpfdMXZINxoiRBrwQpAD/UKxk6etF5qvtAwDJaFMZiTMh\nd6tPNVBcThhUglSqqQFT3BKE9z5KTGwonMeqZlyf/EpXRBn0YcaoWvcAzaahMBQw\nUPwwEtU3FVyYBbLQee0SoYDsddEjdaNN/37auMVIltYmKNq/A4KhJWduTGFcaD/k\nfcXIzhzBi4vk1No6y2ftDgbivxP3MVQyf1tIfD1fv9cw/55JnDRA3IXkQRc+yyUG\nGmHXpKHhqNKm\n-----END SIGNED MESSAGE-----", + "payload": null + } + }, + "url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "html_url": "https://github.com/hub4j/github-api/commit/86a2e245aa6d71d54923655066049d9e21a15f01", + "comments_url": "https://api.github.com/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01/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/hub4j/github-api/commits/ecbfdd7315ef2cf04b2be7f11a072ce0bd00c396", + "html_url": "https://github.com/hub4j/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/hub4j/github-api/blob/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "raw_url": "https://github.com/hub4j/github-api/raw/86a2e245aa6d71d54923655066049d9e21a15f01/README", + "contents_url": "https://api.github.com/repos/hub4j/github-api/contents/README?ref=86a2e245aa6d71d54923655066049d9e21a15f01", + "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/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/user-1.json new file mode 100644 index 0000000000..a4b576e8a7 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/__files/user-1.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/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api-2.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api-2.json new file mode 100644 index 0000000000..80fb7dfa4e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api-2.json @@ -0,0 +1,48 @@ +{ + "id": "441cdfd7-a44a-42b4-b732-57e674227760", + "name": "repos_hub4j_github-api", + "request": { + "url": "/repos/hub4j/github-api", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api-2.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/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json new file mode 100644 index 0000000000..6b5904361c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.json @@ -0,0 +1,48 @@ +{ + "id": "d76abea9-c1be-430a-bbd0-28931c58e1e8", + "name": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01", + "request": { + "url": "/repos/hub4j/github-api/commits/86a2e245aa6d71d54923655066049d9e21a15f01", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "repos_hub4j_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3.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/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/user-1.json new file mode 100644 index 0000000000..7c0606ff2f --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testOscpRevoked/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "c247f81b-84b8-44e9-820a-0a91dc74ce98", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.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/GitHubTest/wiremock/getMyMarketplacePurchases/__files/body-user-marketplace_purchases-stubbed-eVWvD.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getMyMarketplacePurchases/__files/body-user-marketplace_purchases-stubbed-eVWvD.json index a74693a373..70cad368ca 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getMyMarketplacePurchases/__files/body-user-marketplace_purchases-stubbed-eVWvD.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/getMyMarketplacePurchases/__files/body-user-marketplace_purchases-stubbed-eVWvD.json @@ -24,7 +24,7 @@ "monthly_price_in_cents": 1099, "yearly_price_in_cents": 11870, "has_free_trial": false, - "price_model": "flat-rate", + "price_model": "FLAT_RATE", "state": "published", "unit_name": null, "bullets": [ @@ -56,7 +56,7 @@ "description": "A free CI solution", "monthly_price_in_cents": 0, "yearly_price_in_cents": 0, - "price_model": "free", + "price_model": "FREE", "has_free_trial": false, "state": "published", "unit_name": null, diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/__files/users_kohsuke-1.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/__files/users_kohsuke-1.json new file mode 100644 index 0000000000..8b7aa0e48e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/__files/users_kohsuke-1.json @@ -0,0 +1,34 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars.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": "@launchableinc ", + "blog": "https://www.kohsuke.org/", + "location": "San Jose, California", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 263, + "public_gists": 113, + "followers": 2110, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2023-08-09T13:37:19Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-1.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-1.json new file mode 100644 index 0000000000..e0b56d4f9b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-1.json @@ -0,0 +1,53 @@ +{ + "id": "d37116f2-558c-4543-9d1d-e2241cfcaf54", + "name": "users_kohsuke", + "scenarioName": "Retry with valid credentials", + "requiredScenarioState": "Started", + "newScenarioState": "Retry with the same credentials", + "request": { + "url": "/users/kohsuke", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + }, + "Authorization": { + "equalTo": "original token" + } + } + }, + "response": { + "status": 403, + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 09:12:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e2b462e6fe85486beb06033fe196d7c7b7669a96ddbb8f411b91f56288b31b3b\"", + "Last-Modified": "Wed, 09 Aug 2023 13:37:19 GMT", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "0", + "X-RateLimit-Reset": "{{testStartDate offset='3 seconds' format='unix'}}", + "X-RateLimit-Used": "1", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BDE4:73C9:BF78362:C13B808:64D4AA05" + } + }, + "uuid": "d37116f2-558c-4543-9d1d-e2241cfcaf54", + "persistent": true, + "insertionIndex": 1 +} diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-2.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-2.json new file mode 100644 index 0000000000..0eea762450 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestDoesNotGetNewAuthorizationTokenWhenOldOneIsStillValid/mappings/users_kohsuke-2.json @@ -0,0 +1,52 @@ +{ + "id": "d37116f2-558c-4543-9d1d-e2241cfcaf54", + "name": "users_kohsuke", + "requiredScenarioState": "Retry with the same credentials", + "request": { + "url": "/users/kohsuke", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + }, + "Authorization": { + "equalTo": "original token" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Thu, 10 Aug 2023 09:12:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "public, max-age=60, s-maxage=60", + "Vary": [ + "Accept", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"e2b462e6fe85486beb06033fe196d7c7b7669a96ddbb8f411b91f56288b31b3b\"", + "Last-Modified": "Wed, 09 Aug 2023 13:37:19 GMT", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "59", + "X-RateLimit-Reset": "{{testStartDate offset='1 hours' format='unix'}}", + "X-RateLimit-Used": "1", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BDE4:73C9:BF78362:C13B808:64D4AA05" + } + }, + "uuid": "d37116f2-558c-4543-9d1d-e2241cfcaf54", + "persistent": true, + "insertionIndex": 1 +} diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/user-1.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/user-1.json new file mode 100644 index 0000000000..e11a3143bb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/user-1.json @@ -0,0 +1,34 @@ +{ + "login": "emrebasar", + "id": 3469498, + "node_id": "MDQ6VXNlcjM0Njk0OTg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3469498?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emrebasar", + "html_url": "https://github.com/emrebasar", + "followers_url": "https://api.github.com/users/emrebasar/followers", + "following_url": "https://api.github.com/users/emrebasar/following{/other_user}", + "gists_url": "https://api.github.com/users/emrebasar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emrebasar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emrebasar/subscriptions", + "organizations_url": "https://api.github.com/users/emrebasar/orgs", + "repos_url": "https://api.github.com/users/emrebasar/repos", + "events_url": "https://api.github.com/users/emrebasar/events{/privacy}", + "received_events_url": "https://api.github.com/users/emrebasar/received_events", + "type": "User", + "site_admin": false, + "name": "R. Emre Basar", + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 3, + "public_gists": 0, + "followers": 2, + "following": 0, + "created_at": "2013-02-04T08:26:33Z", + "updated_at": "2023-06-29T21:22:45Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/users_kohsuke-2.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/users_kohsuke-2.json new file mode 100644 index 0000000000..c11febf796 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/__files/users_kohsuke-2.json @@ -0,0 +1,34 @@ +{ + "login": "kohsuke", + "id": 50003, + "node_id": "MDQ6VXNlcjUwMDAz", + "avatar_url": "https://avatars.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": "@launchableinc ", + "blog": "https://www.kohsuke.org/", + "location": "San Jose, California", + "email": "kk@kohsuke.org", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 263, + "public_gists": 113, + "followers": 2098, + "following": 3, + "created_at": "2009-01-28T18:53:21Z", + "updated_at": "2023-05-16T02:35:24Z" +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/user-1.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/user-1.json new file mode 100644 index 0000000000..cc9252faeb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/user-1.json @@ -0,0 +1,51 @@ +{ + "id": "34cadfa1-f969-4d8d-a855-d4073878d0d8", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 04 Jul 2023 09:27:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"1ccca51d2d215d0aa63c9c0e7912237f2e1f42bd17ac8e9ab30f539d9673fd4e\"", + "Last-Modified": "Thu, 29 Jun 2023 21:22:45 GMT", + "X-OAuth-Scopes": "gist, read:org, repo", + "X-Accepted-OAuth-Scopes": "", + "x-oauth-client-id": "178c6fc778ccc68e1d6a", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1688466174", + "X-RateLimit-Used": "11", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BC5B:03C1:15BF2AD:1603E7D:64A3E617" + } + }, + "uuid": "34cadfa1-f969-4d8d-a855-d4073878d0d8", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-2.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-2.json new file mode 100644 index 0000000000..4c73ff0496 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-2.json @@ -0,0 +1,56 @@ +{ + "id": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "name": "users_kohsuke", + "scenarioName": "Retry with expired credentials", + "requiredScenarioState": "Started", + "newScenarioState": "Unauthorized", + "request": { + "url": "/users/kohsuke", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + }, + "Authorization": { + "equalTo": "original token" + } + } + }, + "response": { + "status": 403, + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 04 Jul 2023 09:27:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f41fda58171c5e0eca7018225db5009319a5b17852fc44db7ad6e4d0f7ac823a\"", + "Last-Modified": "Tue, 16 May 2023 02:35:24 GMT", + "X-OAuth-Scopes": "gist, read:org, repo", + "X-Accepted-OAuth-Scopes": "", + "x-oauth-client-id": "178c6fc778ccc68e1d6a", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "0", + "X-RateLimit-Reset": "{{testStartDate offset='1 seconds' format='unix'}}", + "X-RateLimit-Used": "13", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BC76:39D5:E12F87A:E3E5583:64A3E618" + } + }, + "uuid": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "persistent": true, + "insertionIndex": 2 +} diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-3.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-3.json new file mode 100644 index 0000000000..628b0792d4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-3.json @@ -0,0 +1,57 @@ +{ + "id": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "name": "users_kohsuke", + "scenarioName": "Retry with expired credentials", + "requiredScenarioState": "Unauthorized", + "newScenarioState": "Expect new token", + "request": { + "url": "/users/kohsuke", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + }, + "Authorization": { + "equalTo": "original token" + } + } + }, + "response": { + "status": 401, + "bodyFileName": "users_kohsuke-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 04 Jul 2023 09:27:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f41fda58171c5e0eca7018225db5009319a5b17852fc44db7ad6e4d0f7ac823a\"", + "Last-Modified": "Tue, 16 May 2023 02:35:24 GMT", + "X-OAuth-Scopes": "gist, read:org, repo", + "X-Accepted-OAuth-Scopes": "", + "x-oauth-client-id": "178c6fc778ccc68e1d6a", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "{{testStartDate offset='1 seconds' format='unix'}}", + "X-RateLimit-Used": "13", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BC76:39D5:E12F87A:E3E5583:64A3E618" + } + }, + "uuid": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "persistent": true, + "insertionIndex": 2 +} diff --git a/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-4.json b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-4.json new file mode 100644 index 0000000000..51a5d75d16 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/extras/authorization/AuthorizationTokenRefreshTest/wiremock/testRetriedRequestGetsNewAuthorizationTokenWhenOldOneExpires/mappings/users_kohsuke-4.json @@ -0,0 +1,56 @@ +{ + "id": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "name": "users_kohsuke", + "scenarioName": "Retry with expired credentials", + "requiredScenarioState": "Expect new token", + "request": { + "url": "/users/kohsuke", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + }, + "Authorization": { + "equalTo": "refreshed token" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "users_kohsuke-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Tue, 04 Jul 2023 09:27:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"f41fda58171c5e0eca7018225db5009319a5b17852fc44db7ad6e4d0f7ac823a\"", + "Last-Modified": "Tue, 16 May 2023 02:35:24 GMT", + "X-OAuth-Scopes": "gist, read:org, repo", + "X-Accepted-OAuth-Scopes": "", + "x-oauth-client-id": "178c6fc778ccc68e1d6a", + "X-GitHub-Media-Type": "github.v3; format=json", + "x-github-api-version-selected": "2022-11-28", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "{{testStartDate offset='1 seconds' format='unix'}}", + "X-RateLimit-Used": "13", + "X-RateLimit-Resource": "core", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "BC76:39D5:E12F87A:E3E5583:64A3E618" + } + }, + "uuid": "c00fbe9b-6c8a-4f61-b0f1-ddfd442bd4f7", + "persistent": true, + "insertionIndex": 2 +}