mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-10 08:21:21 +00:00
Improve behavior and documentation for WireMock testing
This commit is contained in:
2
.github/workflows/maven.yml
vendored
2
.github/workflows/maven.yml
vendored
@@ -16,4 +16,4 @@ jobs:
|
||||
- name: Maven Download all dependencies
|
||||
run: mvn -B org.apache.maven.plugins:maven-dependency-plugin:3.1.1:go-offline
|
||||
- name: Maven Build
|
||||
run: mvn -B package --file pom.xml -Dtest=GistTest,PullRequestTest,UserTest
|
||||
run: mvn -B package --file pom.xml -Dtest=CommitTest,GistTest,PullRequestTest,UserTest,WireMockStatusReporterTest
|
||||
|
||||
62
CONTRIBUTING.md
Normal file
62
CONTRIBUTING.md
Normal file
@@ -0,0 +1,62 @@
|
||||
# Contributing
|
||||
|
||||
## Using WireMock and Snapshots
|
||||
|
||||
This project has started converting to using WireMock to stub out http responses instead of use live data.
|
||||
This change will allow tests to run in a CI environment without needing to touch github.com.
|
||||
The tests will instead serve previously recorded responses from local data files.
|
||||
|
||||
### Running WireMock tests
|
||||
|
||||
Example:
|
||||
|
||||
`mvn install -Dtest=WireMockStatusReporterTest`
|
||||
|
||||
This the default behavior.
|
||||
|
||||
|
||||
### Setting up credential
|
||||
|
||||
1. Create an OAuth token on github.com
|
||||
2. Set the GITHUB_OAUTH environment variable to the value of that token
|
||||
3. Set the system property `test.github.useProxy` (usually like "-Dtest.github.useProxy" as a Java VM option)
|
||||
|
||||
`mvn install -Dtest.github.useProxy -Dtest=WireMockStatusReporterTest`
|
||||
|
||||
4. The above should report no test failures and include the following console output:
|
||||
|
||||
`WireMockStatusReporterTest: GitHub proxying and user auth correctly configured for user login: <your login>`
|
||||
|
||||
Whenever you run tests with `-Dtest.github.useProxy`, they will try to get data from local files but will fallback to proxying to github if not found.
|
||||
|
||||
|
||||
### Writing a new test
|
||||
|
||||
Once you have credentials setup, you add new test classes and test methods as you would normally.
|
||||
Keep `useProxy` enabled and iterate on your tests as needed. Remember, while proxying your tests are interacting with GitHub - you will need to clean up your state between runs.
|
||||
|
||||
When you are ready to create a snapshot of your test data,
|
||||
run your test with `test.github.takeSnapshot` ("-Dtest.github.takeSnapshot" as a Java VM option). For example:
|
||||
|
||||
`mvn install -Dtest.github.takeSnapshot -Dtest=YourTestClassName`
|
||||
|
||||
The above command would create snapshot WireMock data files under the path `src/test/resources/org/kohsuhke/github/YourTestClassName/wiremock`.
|
||||
Each method would get a separate director that would hold the data files for that test method.
|
||||
|
||||
Add all files including the generated data to your commit and submit a PR.
|
||||
|
||||
### Modifying existing tests
|
||||
|
||||
When modifying existing tests, you can change the stubbed WireMock data files by hand or you can try generating a new snapshot.
|
||||
|
||||
#### Manual editing of data (minor changes only)
|
||||
|
||||
If you know what data will change, it is sometimes simplest to make any required changes to the data files manually.
|
||||
This can be easier if the changes are minor or when you development environment is not setup to to take updated snapshots.
|
||||
|
||||
#### Generating a new snapshot
|
||||
|
||||
For more most changes, it is recommended to take a new snapshot when updating tests.
|
||||
Delete the wiremock data files for the test method you will be modifying.
|
||||
For more significant changes, you can even delete the WireMock files for an entire test class.
|
||||
Then follow the same as when writing a new test: run with proxy enabled to debug, take a new snapshot when done, commit everything, and submit the PR.
|
||||
@@ -118,17 +118,13 @@ public class GitHubBuilder {
|
||||
* login, password, oauth
|
||||
*/
|
||||
public static GitHubBuilder fromEnvironment() throws IOException {
|
||||
return fromProperties(getPropertiesFromEnvironment());
|
||||
}
|
||||
|
||||
static Properties getPropertiesFromEnvironment() {
|
||||
Properties props = new Properties();
|
||||
for (Entry<String, String> e : System.getenv().entrySet()) {
|
||||
String name = e.getKey().toLowerCase(Locale.ENGLISH);
|
||||
if (name.startsWith("github_")) name=name.substring(7);
|
||||
props.put(name,e.getValue());
|
||||
}
|
||||
return props;
|
||||
return fromProperties(props);
|
||||
}
|
||||
|
||||
public static GitHubBuilder fromPropertyFile() throws IOException {
|
||||
|
||||
@@ -21,10 +21,21 @@ import static com.github.tomakehurst.wiremock.client.WireMock.*;
|
||||
*/
|
||||
public abstract class AbstractGitHubApiWireMockTest extends Assert {
|
||||
|
||||
// By default the wiremock tests will, run without proxy or taking a snapshot.
|
||||
// The tests will use only the stubbed data and will fail if requests are made for missing data.
|
||||
// You can use the proxy without taking a snapshot while writing and debugging tests.
|
||||
// You cannot take a snapshot without proxying.
|
||||
protected final static boolean takeSnapshot = System.getProperty("test.github.takeSnapshot", "false") != "false";
|
||||
protected final static boolean useProxy = takeSnapshot || System.getProperty("test.github.useProxy", "false") != "false";
|
||||
|
||||
public final static String STUBBED_USER_LOGIN = "placeholder-user";
|
||||
public final static String STUBBED_USER_PASSWORD = "placeholder-password";
|
||||
|
||||
protected GitHub gitHub;
|
||||
private final String baseFilesClassPath = this.getClass().getName().replace('.', '/');
|
||||
protected final String baseRecordPath = "src/test/resources/" + baseFilesClassPath + "/wiremock";
|
||||
private boolean takeSnapshot = false;
|
||||
|
||||
|
||||
|
||||
@Rule
|
||||
public WireMockRule githubApi = new WireMockRule(WireMockConfiguration.options()
|
||||
@@ -51,7 +62,7 @@ public abstract class AbstractGitHubApiWireMockTest extends Assert {
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "url-rewrite";
|
||||
return "github-api-url-rewrite";
|
||||
}
|
||||
})
|
||||
);
|
||||
@@ -59,36 +70,30 @@ public abstract class AbstractGitHubApiWireMockTest extends Assert {
|
||||
@Before
|
||||
public void wireMockSetup() throws Exception {
|
||||
|
||||
Properties props = GitHubBuilder.getPropertiesFromEnvironment();
|
||||
GitHubBuilder builder = GitHubBuilder.fromEnvironment()
|
||||
.withEndpoint("http://localhost:" + githubApi.port())
|
||||
.withRateLimitHandler(RateLimitHandler.FAIL);
|
||||
|
||||
// By default the wiremock tests will proxy to github transparently without taking snapshots
|
||||
// This lets you debug any
|
||||
if(Boolean.parseBoolean(props.getProperty("snapshot", "false"))) {
|
||||
takeSnapshot = true;
|
||||
}
|
||||
|
||||
if(!props.containsKey("oauth") && !takeSnapshot) {
|
||||
// This sets the oauth token to a placeholder wiremock tests
|
||||
if(useProxy) {
|
||||
githubApi.stubFor(
|
||||
proxyAllTo("https://api.github.com/")
|
||||
.atPriority(100)
|
||||
);
|
||||
} else {
|
||||
// This sets the user and password to a placeholder for wiremock testing
|
||||
// This makes the tests believe they are running with permissions
|
||||
// The recorded stubs will behave like they running with permissions
|
||||
props.setProperty("oauth", "placeholder-will-fail-when-not-mocking");
|
||||
builder.withPassword(STUBBED_USER_LOGIN, STUBBED_USER_PASSWORD);
|
||||
|
||||
// Just to be super clear
|
||||
githubApi.stubFor(
|
||||
any(urlPathMatching(".*"))
|
||||
.willReturn(status(500))
|
||||
.willReturn(status(500).withBody("Stubbed data not found. Set test.github.use-proxy to have WireMock proxy to github"))
|
||||
.atPriority(100));
|
||||
}
|
||||
|
||||
githubApi.stubFor(
|
||||
proxyAllTo("https://api.github.com/")
|
||||
.atPriority(100)
|
||||
);
|
||||
|
||||
gitHub = GitHubBuilder.fromProperties(props)
|
||||
.withEndpoint("http://localhost:" + githubApi.port())
|
||||
.withRateLimitHandler(RateLimitHandler.FAIL)
|
||||
.build();
|
||||
|
||||
gitHub = builder.build();
|
||||
}
|
||||
|
||||
@After
|
||||
|
||||
@@ -8,11 +8,11 @@ import java.io.IOException;
|
||||
/**
|
||||
* @author Kohsuke Kawaguchi
|
||||
*/
|
||||
public class CommitTest extends AbstractGitHubApiTestBase {
|
||||
public class CommitTest extends AbstractGitHubApiWireMockTest {
|
||||
@Test // issue 152
|
||||
public void lastStatus() throws IOException {
|
||||
GHTag t = gitHub.getRepository("stapler/stapler").listTags().iterator().next();
|
||||
t.getCommit().getLastStatus();
|
||||
assertNotNull(t.getCommit().getLastStatus());
|
||||
}
|
||||
|
||||
@Test // issue 230
|
||||
|
||||
137
src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java
Normal file
137
src/test/java/org/kohsuke/github/WireMockStatusReporterTest.java
Normal file
@@ -0,0 +1,137 @@
|
||||
package org.kohsuke.github;
|
||||
|
||||
import org.kohsuke.github.junit.WireMockRule;
|
||||
import org.hamcrest.Matchers;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import static org.hamcrest.Matchers.*;
|
||||
import static org.junit.Assume.assumeFalse;
|
||||
import static org.junit.Assume.assumeTrue;
|
||||
|
||||
|
||||
/**
|
||||
* Tests in this class are meant to show the behavior of {@link AbstractGitHubApiWireMockTest} with proxying on or off.
|
||||
*
|
||||
* The wiremock data for these tests should only be modified by hand - thus most are skipped when snapshotting.
|
||||
*
|
||||
* @author Liam Newman
|
||||
*/
|
||||
public class WireMockStatusReporterTest extends AbstractGitHubApiWireMockTest {
|
||||
|
||||
@Test
|
||||
public void user_whenProxying_AuthCorrectlyConfigured() throws Exception {
|
||||
assumeFalse("Test only valid when not taking a snapshot", takeSnapshot);
|
||||
assumeTrue("Test only valid when proxying (-Dtest.github.useProxy to enable)", useProxy);
|
||||
|
||||
assertThat(
|
||||
"GitHub connection believes it is anonymous. Make sure you set GITHUB_OAUTH or both GITHUB_USER and GITHUB_PASSWORD environment variables",
|
||||
gitHub.isAnonymous(), is(false));
|
||||
|
||||
assertThat(gitHub.login, not(equalTo(STUBBED_USER_LOGIN)));
|
||||
|
||||
// If this user query fails, either the proxying config has broken (unlikely)
|
||||
// or your auth settings are not being retrieved from the environemnt.
|
||||
// Check your settings.
|
||||
GHUser user = gitHub.getMyself();
|
||||
assertThat(user.getLogin(), notNullValue());
|
||||
|
||||
System.out.println();
|
||||
System.out.println("WireMockStatusReporterTest: GitHub proxying and user auth correctly configured for user login: " + user.getLogin());
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void user_whenNotProxying_Stubbed() throws Exception {
|
||||
assumeFalse("Test only valid when not taking a snapshot", takeSnapshot);
|
||||
assumeFalse("Test only valid when not proxying", useProxy);
|
||||
|
||||
assertThat(gitHub.isAnonymous(), is(false));
|
||||
assertThat(gitHub.login, equalTo(STUBBED_USER_LOGIN));
|
||||
|
||||
GHUser user = gitHub.getMyself();
|
||||
// NOTE: the stubbed user does not have to match the login provided from the github object
|
||||
// github.login is literally just a placeholder when mocking
|
||||
assertThat(user.getLogin(), not(equalTo(STUBBED_USER_LOGIN)));
|
||||
assertThat(user.getLogin(), equalTo("stubbed-user-login"));
|
||||
|
||||
System.out.println("GitHub proxying and user auth correctly configured for user login: " + user.getLogin());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void BasicBehaviors_whenNotProxying() throws Exception {
|
||||
assumeFalse("Test only valid when not taking a snapshot", takeSnapshot);
|
||||
assumeFalse("Test only valid when not proxying", useProxy);
|
||||
|
||||
Exception e = null;
|
||||
GHRepository repo = null;
|
||||
|
||||
// Valid repository, stubbed
|
||||
repo = gitHub.getRepository("github-api/github-api");
|
||||
assertThat(repo.getDescription(), equalTo("this is a stubbed description"));
|
||||
|
||||
// Valid repository, without stub - fails 500 when not proxying
|
||||
try {
|
||||
gitHub.getRepository("jenkinsci/jenkins");
|
||||
fail();
|
||||
} catch (Exception ex) {
|
||||
e = ex;
|
||||
}
|
||||
assertThat(e, Matchers.<Exception>instanceOf(HttpException.class));
|
||||
assertThat("Status should be 500 for missing stubs", ((HttpException)e).getResponseCode(), equalTo(500));
|
||||
assertThat(e.getMessage(), equalTo("Stubbed data not found. Set test.github.use-proxy to have WireMock proxy to github"));
|
||||
|
||||
// Invalid repository, without stub - fails 500 when not proxying
|
||||
e = null;
|
||||
try {
|
||||
gitHub.getRepository("github-api/non-existant-repository");
|
||||
fail();
|
||||
} catch (Exception ex) {
|
||||
e = ex;
|
||||
}
|
||||
|
||||
assertThat(e, Matchers.<Exception>instanceOf(HttpException.class));
|
||||
assertThat("Status should be 500 for missing stubs", ((HttpException)e).getResponseCode(), equalTo(500));
|
||||
assertThat(e.getMessage(), equalTo("Stubbed data not found. Set test.github.use-proxy to have WireMock proxy to github"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void BasicBehaviors_whenProxying() throws Exception {
|
||||
assumeFalse("Test only valid when not taking a snapshot", takeSnapshot);
|
||||
assumeTrue("Test only valid when proxying (-Dtest.github.useProxy to enable)", useProxy);
|
||||
Exception e = null;
|
||||
GHRepository repo = null;
|
||||
|
||||
// Valid repository, stubbed
|
||||
repo = gitHub.getRepository("github-api/github-api");
|
||||
assertThat(repo.getDescription(), equalTo("this is a stubbed description"));
|
||||
|
||||
// Valid repository, without stub - succeeds when proxying
|
||||
repo = gitHub.getRepository("jenkinsci/jenkins");
|
||||
assertThat(repo.getDescription(), notNullValue());
|
||||
|
||||
// Invalid repository, without stub - fails 404 when proxying
|
||||
e = null;
|
||||
try {
|
||||
gitHub.getRepository("github-api/non-existant-repository");
|
||||
} catch (Exception ex) {
|
||||
e = ex;
|
||||
}
|
||||
|
||||
assertThat(e, Matchers.<Exception>instanceOf(GHFileNotFoundException.class));
|
||||
assertThat(e.getMessage(), equalTo("{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/repos/#get\"}"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void whenSnapshot_EnsureProxy() throws Exception {
|
||||
assumeTrue("Test only valid when Snapshotting (-Dtest.github.takeSnapshot to enable)", takeSnapshot);
|
||||
|
||||
assertTrue("When taking a snapshot, proxy should automatically be enabled", useProxy);
|
||||
}
|
||||
|
||||
@Ignore("Not implemented yet")
|
||||
@Test
|
||||
public void whenSnapshot_EnsureRecordToExpectedLocation() throws Exception {
|
||||
assumeTrue("Test only valid when Snapshotting (-Dtest.github.takeSnapshot to enable)", takeSnapshot);
|
||||
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
[{"url":"https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","id":7455218060,"node_id":"MDEzOlN0YXR1c0NvbnRleHQ3NDU1MjE4MDYw","state":"error","description":"This commit cannot be built","target_url":"https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect","context":"continuous-integration/jenkins/branch","created_at":"2019-08-19T18:45:31Z","updated_at":"2019-08-19T18:45:31Z","creator":{"login":"jenkinsadmin","id":874715,"node_id":"MDQ6VXNlcjg3NDcxNQ==","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","gravatar_id":"","url":"https://api.github.com/users/jenkinsadmin","html_url":"https://github.com/jenkinsadmin","followers_url":"https://api.github.com/users/jenkinsadmin/followers","following_url":"https://api.github.com/users/jenkinsadmin/following{/other_user}","gists_url":"https://api.github.com/users/jenkinsadmin/gists{/gist_id}","starred_url":"https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jenkinsadmin/subscriptions","organizations_url":"https://api.github.com/users/jenkinsadmin/orgs","repos_url":"https://api.github.com/users/jenkinsadmin/repos","events_url":"https://api.github.com/users/jenkinsadmin/events{/privacy}","received_events_url":"https://api.github.com/users/jenkinsadmin/received_events","type":"User","site_admin":false}},{"url":"https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","id":7455157752,"node_id":"MDEzOlN0YXR1c0NvbnRleHQ3NDU1MTU3NzUy","state":"pending","description":"This commit is being built","target_url":"https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect","context":"continuous-integration/jenkins/branch","created_at":"2019-08-19T18:39:00Z","updated_at":"2019-08-19T18:39:00Z","creator":{"login":"jenkinsadmin","id":874715,"node_id":"MDQ6VXNlcjg3NDcxNQ==","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","gravatar_id":"","url":"https://api.github.com/users/jenkinsadmin","html_url":"https://github.com/jenkinsadmin","followers_url":"https://api.github.com/users/jenkinsadmin/followers","following_url":"https://api.github.com/users/jenkinsadmin/following{/other_user}","gists_url":"https://api.github.com/users/jenkinsadmin/gists{/gist_id}","starred_url":"https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jenkinsadmin/subscriptions","organizations_url":"https://api.github.com/users/jenkinsadmin/orgs","repos_url":"https://api.github.com/users/jenkinsadmin/repos","events_url":"https://api.github.com/users/jenkinsadmin/events{/privacy}","received_events_url":"https://api.github.com/users/jenkinsadmin/received_events","type":"User","site_admin":false}},{"url":"https://api.github.com/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","id":7455156636,"node_id":"MDEzOlN0YXR1c0NvbnRleHQ3NDU1MTU2NjM2","state":"pending","description":"This commit is being built","target_url":"https://ci.jenkins.io/job/Stapler/job/stapler/job/master/50/display/redirect","context":"continuous-integration/jenkins/branch","created_at":"2019-08-19T18:38:52Z","updated_at":"2019-08-19T18:38:52Z","creator":{"login":"jenkinsadmin","id":874715,"node_id":"MDQ6VXNlcjg3NDcxNQ==","avatar_url":"https://avatars3.githubusercontent.com/u/874715?v=4","gravatar_id":"","url":"https://api.github.com/users/jenkinsadmin","html_url":"https://github.com/jenkinsadmin","followers_url":"https://api.github.com/users/jenkinsadmin/followers","following_url":"https://api.github.com/users/jenkinsadmin/following{/other_user}","gists_url":"https://api.github.com/users/jenkinsadmin/gists{/gist_id}","starred_url":"https://api.github.com/users/jenkinsadmin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jenkinsadmin/subscriptions","organizations_url":"https://api.github.com/users/jenkinsadmin/orgs","repos_url":"https://api.github.com/users/jenkinsadmin/repos","events_url":"https://api.github.com/users/jenkinsadmin/events{/privacy}","received_events_url":"https://api.github.com/users/jenkinsadmin/received_events","type":"User","site_admin":false}}]
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"login":"bitwiseman","id":1958953,"node_id":"MDQ6VXNlcjE5NTg5NTM=","avatar_url":"https://avatars3.githubusercontent.com/u/1958953?v=4","gravatar_id":"","url":"https://api.github.com/users/bitwiseman","html_url":"https://github.com/bitwiseman","followers_url":"https://api.github.com/users/bitwiseman/followers","following_url":"https://api.github.com/users/bitwiseman/following{/other_user}","gists_url":"https://api.github.com/users/bitwiseman/gists{/gist_id}","starred_url":"https://api.github.com/users/bitwiseman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bitwiseman/subscriptions","organizations_url":"https://api.github.com/users/bitwiseman/orgs","repos_url":"https://api.github.com/users/bitwiseman/repos","events_url":"https://api.github.com/users/bitwiseman/events{/privacy}","received_events_url":"https://api.github.com/users/bitwiseman/received_events","type":"User","site_admin":false,"name":"Liam Newman","company":"Cloudbees, Inc.","blog":"","location":"Seattle, WA, USA","email":"bitwiseman@gmail.com","hireable":null,"bio":"https://twitter.com/bitwiseman","public_repos":166,"public_gists":4,"followers":133,"following":9,"created_at":"2012-07-11T20:38:33Z","updated_at":"2019-06-03T17:47:20Z"}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"id" : "dea29c4a-c5b6-460d-8550-09d75d487830",
|
||||
"name" : "repos_stapler_stapler",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler-dea29c4a-c5b6-460d-8550-09d75d487830.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:06 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4932",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"449cae6ec2615b7bcbe15d6e821627cc\"",
|
||||
"Last-Modified" : "Tue, 27 Aug 2019 16:42:33 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "repo",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99F:2C7D:C96DC:EC84C:5D769A6A"
|
||||
}
|
||||
},
|
||||
"uuid" : "dea29c4a-c5b6-460d-8550-09d75d487830",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 2
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id" : "b564ee52-421b-4d1a-aa96-bdb613581b8a",
|
||||
"name" : "repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/statuses/6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_statuses_6a243869aa3c3f80579102d00848a0083953d654-b564ee52-421b-4d1a-aa96-bdb613581b8a.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:06 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4930",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"5f8e313af31f78898aeeeae1b6f45a5b\"",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "repo, repo:status",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99F:2C7D:C9739:EC8B4:5D769A6A"
|
||||
}
|
||||
},
|
||||
"uuid" : "b564ee52-421b-4d1a-aa96-bdb613581b8a",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 4
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"id" : "7637217e-0e80-4f8b-bf01-93a7a97952fd",
|
||||
"name" : "repos_stapler_stapler_tags",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/tags",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_tags-7637217e-0e80-4f8b-bf01-93a7a97952fd.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:06 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4931",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"dcf4cf083a57185673e19420a37d0ca0\"",
|
||||
"Last-Modified" : "Tue, 27 Aug 2019 16:42:33 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Link" : "<https://api.github.com/repositories/1548514/tags?page=2>; rel=\"next\", <https://api.github.com/repositories/1548514/tags?page=9>; rel=\"last\"",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99F:2C7D:C9716:EC893:5D769A6A"
|
||||
}
|
||||
},
|
||||
"uuid" : "7637217e-0e80-4f8b-bf01-93a7a97952fd",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 3
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"id" : "bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a",
|
||||
"name" : "user",
|
||||
"request" : {
|
||||
"url" : "/user",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "user-bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:06 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4933",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"3ba1de3523043df743651bd23efc7def\"",
|
||||
"Last-Modified" : "Mon, 03 Jun 2019 17:47:20 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99F:2C7D:C96C8:EC833:5D769A69"
|
||||
}
|
||||
},
|
||||
"uuid" : "bde54f7e-5b5a-49b2-b94c-a0cf8f7a0d1a",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 1
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"sha":"06b1108ec041fd8d6e7f54c8578d84a672fee9e4","node_id":"MDY6Q29tbWl0MTU0ODUxNDowNmIxMTA4ZWMwNDFmZDhkNmU3ZjU0Yzg1NzhkODRhNjcyZmVlOWU0","commit":{"author":{"name":"Jeff Thompson","email":"37345299+jeffret-b@users.noreply.github.com","date":"2019-08-19T17:42:58Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2019-08-19T17:42:58Z"},"message":"Update BSD license reference.\n\nCo-Authored-By: Jesse Glick <jglick@cloudbees.com>","tree":{"sha":"859fffa8ce0c958e4e4209c7a758be16f0c97c55","url":"https://api.github.com/repos/stapler/stapler/git/trees/859fffa8ce0c958e4e4209c7a758be16f0c97c55"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdWt+iCRBK7hj4Ov3rIwAAdHIIAF2vncFEFRwkJdZrVZEkT30N\neYJXFeILq+wFRDuWEDOueIkUwCy9Z4xYnM/n7fw+51LsRK+4kaFNjP6HFJGr/+m5\nioCArE27vaXnZjTAldpAG0Jku3eIfChutub0HcBy4UURozLw70ajWpbA3vOQ560B\ntontgx2I/pJmwOqkXRVvM7yxTlW751kyTVWScCtOeX2efuveeotECsDrqScKxq66\nkvJ1xmb9olWdlTjChOgqNrLbLC0jUHqc1nMGCkkVL0Pl2BMB8cXrKBQyU71ZuVJt\n4EW8IBWBtuHwHFtwABBCHXdtSsCGPat0hVag72CHiqKoZV/EAPecIlyiZMAYYig=\n=7zTb\n-----END PGP SIGNATURE-----\n","payload":"tree 859fffa8ce0c958e4e4209c7a758be16f0c97c55\nparent 2a971c4e38c6d6693f7ad8b6768e4d74840d6679\nauthor Jeff Thompson <37345299+jeffret-b@users.noreply.github.com> 1566236578 -0600\ncommitter GitHub <noreply@github.com> 1566236578 -0600\n\nUpdate BSD license reference.\n\nCo-Authored-By: Jesse Glick <jglick@cloudbees.com>"}},"url":"https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","html_url":"https://github.com/stapler/stapler/commit/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","comments_url":"https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/comments","author":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a971c4e38c6d6693f7ad8b6768e4d74840d6679","url":"https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679","html_url":"https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679"}],"stats":{"total":2,"additions":1,"deletions":1},"files":[{"sha":"fcfba8d7fc2b339aaa73e28142b5dfc2234a35bc","filename":"pom.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=06b1108ec041fd8d6e7f54c8578d84a672fee9e4","patch":"@@ -30,7 +30,7 @@\n <license>\n <name>2-clause BSD license</name>\n <distribution>repo</distribution>\n- <url>https://opensource.org/licenses/bsd-license</url>\n+ <url>https://opensource.org/licenses/BSD-2-Clause</url>\n </license>\n </licenses>\n "}]}
|
||||
@@ -0,0 +1 @@
|
||||
{"sha":"06b1108ec041fd8d6e7f54c8578d84a672fee9e4","node_id":"MDY6Q29tbWl0MTU0ODUxNDowNmIxMTA4ZWMwNDFmZDhkNmU3ZjU0Yzg1NzhkODRhNjcyZmVlOWU0","commit":{"author":{"name":"Jeff Thompson","email":"37345299+jeffret-b@users.noreply.github.com","date":"2019-08-19T17:42:58Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2019-08-19T17:42:58Z"},"message":"Update BSD license reference.\n\nCo-Authored-By: Jesse Glick <jglick@cloudbees.com>","tree":{"sha":"859fffa8ce0c958e4e4209c7a758be16f0c97c55","url":"https://api.github.com/repos/stapler/stapler/git/trees/859fffa8ce0c958e4e4209c7a758be16f0c97c55"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJdWt+iCRBK7hj4Ov3rIwAAdHIIAF2vncFEFRwkJdZrVZEkT30N\neYJXFeILq+wFRDuWEDOueIkUwCy9Z4xYnM/n7fw+51LsRK+4kaFNjP6HFJGr/+m5\nioCArE27vaXnZjTAldpAG0Jku3eIfChutub0HcBy4UURozLw70ajWpbA3vOQ560B\ntontgx2I/pJmwOqkXRVvM7yxTlW751kyTVWScCtOeX2efuveeotECsDrqScKxq66\nkvJ1xmb9olWdlTjChOgqNrLbLC0jUHqc1nMGCkkVL0Pl2BMB8cXrKBQyU71ZuVJt\n4EW8IBWBtuHwHFtwABBCHXdtSsCGPat0hVag72CHiqKoZV/EAPecIlyiZMAYYig=\n=7zTb\n-----END PGP SIGNATURE-----\n","payload":"tree 859fffa8ce0c958e4e4209c7a758be16f0c97c55\nparent 2a971c4e38c6d6693f7ad8b6768e4d74840d6679\nauthor Jeff Thompson <37345299+jeffret-b@users.noreply.github.com> 1566236578 -0600\ncommitter GitHub <noreply@github.com> 1566236578 -0600\n\nUpdate BSD license reference.\n\nCo-Authored-By: Jesse Glick <jglick@cloudbees.com>"}},"url":"https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","html_url":"https://github.com/stapler/stapler/commit/06b1108ec041fd8d6e7f54c8578d84a672fee9e4","comments_url":"https://api.github.com/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/comments","author":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a971c4e38c6d6693f7ad8b6768e4d74840d6679","url":"https://api.github.com/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679","html_url":"https://github.com/stapler/stapler/commit/2a971c4e38c6d6693f7ad8b6768e4d74840d6679"}],"stats":{"total":2,"additions":1,"deletions":1},"files":[{"sha":"fcfba8d7fc2b339aaa73e28142b5dfc2234a35bc","filename":"pom.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/06b1108ec041fd8d6e7f54c8578d84a672fee9e4/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=06b1108ec041fd8d6e7f54c8578d84a672fee9e4","patch":"@@ -30,7 +30,7 @@\n <license>\n <name>2-clause BSD license</name>\n <distribution>repo</distribution>\n- <url>https://opensource.org/licenses/bsd-license</url>\n+ <url>https://opensource.org/licenses/BSD-2-Clause</url>\n </license>\n </licenses>\n "}]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"sha":"53ce34d7d89c5172ae4f4f3167e35852b1910b59","node_id":"MDY6Q29tbWl0MTU0ODUxNDo1M2NlMzRkN2Q4OWM1MTcyYWU0ZjRmMzE2N2UzNTg1MmIxOTEwYjU5","commit":{"author":{"name":"Jesse Glick","email":"jglick@cloudbees.com","date":"2019-04-03T19:03:54Z"},"committer":{"name":"Jesse Glick","email":"jglick@cloudbees.com","date":"2019-04-03T19:03:54Z"},"message":"Miscellaneous POM updates while I am here.","tree":{"sha":"996a8d951dc95bc002ee4703865f45594418902e","url":"https://api.github.com/repos/stapler/stapler/git/trees/996a8d951dc95bc002ee4703865f45594418902e"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlylA5oACgkQHdpp2Uti\nQxFfbgf/Sv3T07OcY1W31Z1RyUVaEx0WeZpfZPuAOibFGfGLC6wpa4LCJCwaTK5l\n2I5T9nNZ95/22S3nsFHyb+VAnOFusXblKw8W6BvvyUWwNXzoBQGgvg37hKyNFwdO\nMRdErOixk71Yb6cnCatvzIpBuM4ENO77/TNvLtBApCETO9UQf6GjLU4jbHJySEHJ\n/NXvpdO1Xu5WskTc2k8/x+dtuilvLEAdMZUEHBiBTcGTUGQqedC6C7Mg3pTm9zGE\nQPj5THk+GZ6fD4KJwx0lyW9dGwTM9XYC/hjVs6AHC2dlROFiJ8/K722Fqti/zAyM\nDYz6+UUHcugK555ttRS1ntqgjxxEPw==\n=kTXy\n-----END PGP SIGNATURE-----","payload":"tree 996a8d951dc95bc002ee4703865f45594418902e\nparent 0e294ea94617a0926bd583dfe41515f4afb881e7\nauthor Jesse Glick <jglick@cloudbees.com> 1554318234 -0400\ncommitter Jesse Glick <jglick@cloudbees.com> 1554318234 -0400\n\nMiscellaneous POM updates while I am here.\n"}},"url":"https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59","html_url":"https://github.com/stapler/stapler/commit/53ce34d7d89c5172ae4f4f3167e35852b1910b59","comments_url":"https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59/comments","author":{"login":"jglick","id":154109,"node_id":"MDQ6VXNlcjE1NDEwOQ==","avatar_url":"https://avatars1.githubusercontent.com/u/154109?v=4","gravatar_id":"","url":"https://api.github.com/users/jglick","html_url":"https://github.com/jglick","followers_url":"https://api.github.com/users/jglick/followers","following_url":"https://api.github.com/users/jglick/following{/other_user}","gists_url":"https://api.github.com/users/jglick/gists{/gist_id}","starred_url":"https://api.github.com/users/jglick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jglick/subscriptions","organizations_url":"https://api.github.com/users/jglick/orgs","repos_url":"https://api.github.com/users/jglick/repos","events_url":"https://api.github.com/users/jglick/events{/privacy}","received_events_url":"https://api.github.com/users/jglick/received_events","type":"User","site_admin":false},"committer":{"login":"jglick","id":154109,"node_id":"MDQ6VXNlcjE1NDEwOQ==","avatar_url":"https://avatars1.githubusercontent.com/u/154109?v=4","gravatar_id":"","url":"https://api.github.com/users/jglick","html_url":"https://github.com/jglick","followers_url":"https://api.github.com/users/jglick/followers","following_url":"https://api.github.com/users/jglick/following{/other_user}","gists_url":"https://api.github.com/users/jglick/gists{/gist_id}","starred_url":"https://api.github.com/users/jglick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jglick/subscriptions","organizations_url":"https://api.github.com/users/jglick/orgs","repos_url":"https://api.github.com/users/jglick/repos","events_url":"https://api.github.com/users/jglick/events{/privacy}","received_events_url":"https://api.github.com/users/jglick/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e294ea94617a0926bd583dfe41515f4afb881e7","url":"https://api.github.com/repos/stapler/stapler/commits/0e294ea94617a0926bd583dfe41515f4afb881e7","html_url":"https://github.com/stapler/stapler/commit/0e294ea94617a0926bd583dfe41515f4afb881e7"}],"stats":{"total":7,"additions":2,"deletions":5},"files":[{"sha":"2c12ec3f8c2d8b52772784b939ccea49b1fa904d","filename":"pom.xml","status":"modified","additions":2,"deletions":5,"changes":7,"blob_url":"https://github.com/stapler/stapler/blob/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=53ce34d7d89c5172ae4f4f3167e35852b1910b59","patch":"@@ -4,7 +4,8 @@\n <parent>\n <groupId>org.kohsuke</groupId>\n <artifactId>pom</artifactId>\n- <version>19</version>\n+ <version>21</version>\n+ <relativePath />\n </parent>\n <groupId>org.kohsuke.stapler</groupId>\n <artifactId>stapler-parent</artifactId>\n@@ -40,10 +41,6 @@\n <tag>${scmTag}</tag>\n </scm>\n \n- <prerequisites>\n- <maven>3.0.4</maven>\n- </prerequisites>\n-\n <distributionManagement>\n <repository>\n <id>maven.jenkins-ci.org</id>"}]}
|
||||
@@ -0,0 +1 @@
|
||||
{"sha":"53ce34d7d89c5172ae4f4f3167e35852b1910b59","node_id":"MDY6Q29tbWl0MTU0ODUxNDo1M2NlMzRkN2Q4OWM1MTcyYWU0ZjRmMzE2N2UzNTg1MmIxOTEwYjU5","commit":{"author":{"name":"Jesse Glick","email":"jglick@cloudbees.com","date":"2019-04-03T19:03:54Z"},"committer":{"name":"Jesse Glick","email":"jglick@cloudbees.com","date":"2019-04-03T19:03:54Z"},"message":"Miscellaneous POM updates while I am here.","tree":{"sha":"996a8d951dc95bc002ee4703865f45594418902e","url":"https://api.github.com/repos/stapler/stapler/git/trees/996a8d951dc95bc002ee4703865f45594418902e"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\niQEzBAABCgAdFiEEYYylhqBIUt57zhxYHdpp2UtiQxEFAlylA5oACgkQHdpp2Uti\nQxFfbgf/Sv3T07OcY1W31Z1RyUVaEx0WeZpfZPuAOibFGfGLC6wpa4LCJCwaTK5l\n2I5T9nNZ95/22S3nsFHyb+VAnOFusXblKw8W6BvvyUWwNXzoBQGgvg37hKyNFwdO\nMRdErOixk71Yb6cnCatvzIpBuM4ENO77/TNvLtBApCETO9UQf6GjLU4jbHJySEHJ\n/NXvpdO1Xu5WskTc2k8/x+dtuilvLEAdMZUEHBiBTcGTUGQqedC6C7Mg3pTm9zGE\nQPj5THk+GZ6fD4KJwx0lyW9dGwTM9XYC/hjVs6AHC2dlROFiJ8/K722Fqti/zAyM\nDYz6+UUHcugK555ttRS1ntqgjxxEPw==\n=kTXy\n-----END PGP SIGNATURE-----","payload":"tree 996a8d951dc95bc002ee4703865f45594418902e\nparent 0e294ea94617a0926bd583dfe41515f4afb881e7\nauthor Jesse Glick <jglick@cloudbees.com> 1554318234 -0400\ncommitter Jesse Glick <jglick@cloudbees.com> 1554318234 -0400\n\nMiscellaneous POM updates while I am here.\n"}},"url":"https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59","html_url":"https://github.com/stapler/stapler/commit/53ce34d7d89c5172ae4f4f3167e35852b1910b59","comments_url":"https://api.github.com/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59/comments","author":{"login":"jglick","id":154109,"node_id":"MDQ6VXNlcjE1NDEwOQ==","avatar_url":"https://avatars1.githubusercontent.com/u/154109?v=4","gravatar_id":"","url":"https://api.github.com/users/jglick","html_url":"https://github.com/jglick","followers_url":"https://api.github.com/users/jglick/followers","following_url":"https://api.github.com/users/jglick/following{/other_user}","gists_url":"https://api.github.com/users/jglick/gists{/gist_id}","starred_url":"https://api.github.com/users/jglick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jglick/subscriptions","organizations_url":"https://api.github.com/users/jglick/orgs","repos_url":"https://api.github.com/users/jglick/repos","events_url":"https://api.github.com/users/jglick/events{/privacy}","received_events_url":"https://api.github.com/users/jglick/received_events","type":"User","site_admin":false},"committer":{"login":"jglick","id":154109,"node_id":"MDQ6VXNlcjE1NDEwOQ==","avatar_url":"https://avatars1.githubusercontent.com/u/154109?v=4","gravatar_id":"","url":"https://api.github.com/users/jglick","html_url":"https://github.com/jglick","followers_url":"https://api.github.com/users/jglick/followers","following_url":"https://api.github.com/users/jglick/following{/other_user}","gists_url":"https://api.github.com/users/jglick/gists{/gist_id}","starred_url":"https://api.github.com/users/jglick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jglick/subscriptions","organizations_url":"https://api.github.com/users/jglick/orgs","repos_url":"https://api.github.com/users/jglick/repos","events_url":"https://api.github.com/users/jglick/events{/privacy}","received_events_url":"https://api.github.com/users/jglick/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e294ea94617a0926bd583dfe41515f4afb881e7","url":"https://api.github.com/repos/stapler/stapler/commits/0e294ea94617a0926bd583dfe41515f4afb881e7","html_url":"https://github.com/stapler/stapler/commit/0e294ea94617a0926bd583dfe41515f4afb881e7"}],"stats":{"total":7,"additions":2,"deletions":5},"files":[{"sha":"2c12ec3f8c2d8b52772784b939ccea49b1fa904d","filename":"pom.xml","status":"modified","additions":2,"deletions":5,"changes":7,"blob_url":"https://github.com/stapler/stapler/blob/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/53ce34d7d89c5172ae4f4f3167e35852b1910b59/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=53ce34d7d89c5172ae4f4f3167e35852b1910b59","patch":"@@ -4,7 +4,8 @@\n <parent>\n <groupId>org.kohsuke</groupId>\n <artifactId>pom</artifactId>\n- <version>19</version>\n+ <version>21</version>\n+ <relativePath />\n </parent>\n <groupId>org.kohsuke.stapler</groupId>\n <artifactId>stapler-parent</artifactId>\n@@ -40,10 +41,6 @@\n <tag>${scmTag}</tag>\n </scm>\n \n- <prerequisites>\n- <maven>3.0.4</maven>\n- </prerequisites>\n-\n <distributionManagement>\n <repository>\n <id>maven.jenkins-ci.org</id>"}]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"sha":"72343298733508cced8dcb8eb43594bcc6130b26","node_id":"MDY6Q29tbWl0MTU0ODUxNDo3MjM0MzI5ODczMzUwOGNjZWQ4ZGNiOGViNDM1OTRiY2M2MTMwYjI2","commit":{"author":{"name":"Jeff Thompson","email":"jeffret.g@gmail.com","date":"2019-02-19T21:27:25Z"},"committer":{"name":"Jeff Thompson","email":"jeffret.g@gmail.com","date":"2019-02-19T21:27:25Z"},"message":"Update to latest versions.","tree":{"sha":"e1299f37e2ce97636d923a5631265279a5377b6d","url":"https://api.github.com/repos/stapler/stapler/git/trees/e1299f37e2ce97636d923a5631265279a5377b6d"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/72343298733508cced8dcb8eb43594bcc6130b26","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26","html_url":"https://github.com/stapler/stapler/commit/72343298733508cced8dcb8eb43594bcc6130b26","comments_url":"https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26/comments","author":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"committer":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"parents":[{"sha":"def3808ecd41583818aef3b35675756f00a45bbe","url":"https://api.github.com/repos/stapler/stapler/commits/def3808ecd41583818aef3b35675756f00a45bbe","html_url":"https://github.com/stapler/stapler/commit/def3808ecd41583818aef3b35675756f00a45bbe"}],"stats":{"total":4,"additions":2,"deletions":2},"files":[{"sha":"94863e605b263eac4033a58ae826865663ac844a","filename":".mvn/extensions.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml","raw_url":"https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26","patch":"@@ -2,6 +2,6 @@\n <extension>\n <groupId>io.jenkins.tools.incrementals</groupId>\n <artifactId>git-changelist-maven-extension</artifactId>\n- <version>1.0-beta-2</version>\n+ <version>1.0-beta-7</version>\n </extension>\n </extensions>"},{"sha":"4976b0e34415ab2138ee63db72b1f374517bb2fd","filename":"pom.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26","patch":"@@ -357,7 +357,7 @@\n <dependency>\n <groupId>io.jenkins.tools.incrementals</groupId>\n <artifactId>incrementals-enforcer-rules</artifactId>\n- <version>1.0-beta-4</version>\n+ <version>1.0-beta-5</version>\n </dependency>\n </dependencies>\n </plugin>"}]}
|
||||
@@ -0,0 +1 @@
|
||||
{"sha":"72343298733508cced8dcb8eb43594bcc6130b26","node_id":"MDY6Q29tbWl0MTU0ODUxNDo3MjM0MzI5ODczMzUwOGNjZWQ4ZGNiOGViNDM1OTRiY2M2MTMwYjI2","commit":{"author":{"name":"Jeff Thompson","email":"jeffret.g@gmail.com","date":"2019-02-19T21:27:25Z"},"committer":{"name":"Jeff Thompson","email":"jeffret.g@gmail.com","date":"2019-02-19T21:27:25Z"},"message":"Update to latest versions.","tree":{"sha":"e1299f37e2ce97636d923a5631265279a5377b6d","url":"https://api.github.com/repos/stapler/stapler/git/trees/e1299f37e2ce97636d923a5631265279a5377b6d"},"url":"https://api.github.com/repos/stapler/stapler/git/commits/72343298733508cced8dcb8eb43594bcc6130b26","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26","html_url":"https://github.com/stapler/stapler/commit/72343298733508cced8dcb8eb43594bcc6130b26","comments_url":"https://api.github.com/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26/comments","author":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"committer":{"login":"jeffret-b","id":37345299,"node_id":"MDQ6VXNlcjM3MzQ1Mjk5","avatar_url":"https://avatars0.githubusercontent.com/u/37345299?v=4","gravatar_id":"","url":"https://api.github.com/users/jeffret-b","html_url":"https://github.com/jeffret-b","followers_url":"https://api.github.com/users/jeffret-b/followers","following_url":"https://api.github.com/users/jeffret-b/following{/other_user}","gists_url":"https://api.github.com/users/jeffret-b/gists{/gist_id}","starred_url":"https://api.github.com/users/jeffret-b/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffret-b/subscriptions","organizations_url":"https://api.github.com/users/jeffret-b/orgs","repos_url":"https://api.github.com/users/jeffret-b/repos","events_url":"https://api.github.com/users/jeffret-b/events{/privacy}","received_events_url":"https://api.github.com/users/jeffret-b/received_events","type":"User","site_admin":false},"parents":[{"sha":"def3808ecd41583818aef3b35675756f00a45bbe","url":"https://api.github.com/repos/stapler/stapler/commits/def3808ecd41583818aef3b35675756f00a45bbe","html_url":"https://github.com/stapler/stapler/commit/def3808ecd41583818aef3b35675756f00a45bbe"}],"stats":{"total":4,"additions":2,"deletions":2},"files":[{"sha":"94863e605b263eac4033a58ae826865663ac844a","filename":".mvn/extensions.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml","raw_url":"https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/.mvn/extensions.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/.mvn/extensions.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26","patch":"@@ -2,6 +2,6 @@\n <extension>\n <groupId>io.jenkins.tools.incrementals</groupId>\n <artifactId>git-changelist-maven-extension</artifactId>\n- <version>1.0-beta-2</version>\n+ <version>1.0-beta-7</version>\n </extension>\n </extensions>"},{"sha":"4976b0e34415ab2138ee63db72b1f374517bb2fd","filename":"pom.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/stapler/stapler/blob/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml","raw_url":"https://github.com/stapler/stapler/raw/72343298733508cced8dcb8eb43594bcc6130b26/pom.xml","contents_url":"https://api.github.com/repos/stapler/stapler/contents/pom.xml?ref=72343298733508cced8dcb8eb43594bcc6130b26","patch":"@@ -357,7 +357,7 @@\n <dependency>\n <groupId>io.jenkins.tools.incrementals</groupId>\n <artifactId>incrementals-enforcer-rules</artifactId>\n- <version>1.0-beta-4</version>\n+ <version>1.0-beta-5</version>\n </dependency>\n </dependencies>\n </plugin>"}]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"login":"bitwiseman","id":1958953,"node_id":"MDQ6VXNlcjE5NTg5NTM=","avatar_url":"https://avatars3.githubusercontent.com/u/1958953?v=4","gravatar_id":"","url":"https://api.github.com/users/bitwiseman","html_url":"https://github.com/bitwiseman","followers_url":"https://api.github.com/users/bitwiseman/followers","following_url":"https://api.github.com/users/bitwiseman/following{/other_user}","gists_url":"https://api.github.com/users/bitwiseman/gists{/gist_id}","starred_url":"https://api.github.com/users/bitwiseman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bitwiseman/subscriptions","organizations_url":"https://api.github.com/users/bitwiseman/orgs","repos_url":"https://api.github.com/users/bitwiseman/repos","events_url":"https://api.github.com/users/bitwiseman/events{/privacy}","received_events_url":"https://api.github.com/users/bitwiseman/received_events","type":"User","site_admin":false,"name":"Liam Newman","company":"Cloudbees, Inc.","blog":"","location":"Seattle, WA, USA","email":"bitwiseman@gmail.com","hireable":null,"bio":"https://twitter.com/bitwiseman","public_repos":166,"public_gists":4,"followers":133,"following":9,"created_at":"2012-07-11T20:38:33Z","updated_at":"2019-06-03T17:47:20Z"}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"id" : "34276839-6f01-44ea-856d-5b26cc12edf8",
|
||||
"name" : "repos_stapler_stapler",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler-34276839-6f01-44ea-856d-5b26cc12edf8.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:00 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4955",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"449cae6ec2615b7bcbe15d6e821627cc\"",
|
||||
"Last-Modified" : "Tue, 27 Aug 2019 16:42:33 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "repo",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2058:C010F:5D769A63"
|
||||
}
|
||||
},
|
||||
"uuid" : "34276839-6f01-44ea-856d-5b26cc12edf8",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 2
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"id" : "6214feb0-5ed5-4325-8407-2f75bef1c4bd",
|
||||
"name" : "repos_stapler_stapler_commits",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits?path=pom.xml",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits-6214feb0-5ed5-4325-8407-2f75bef1c4bd.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:00 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4954",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"e637dc76b698b0b086c2753b30498d0a\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 18:38:53 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Link" : "<https://api.github.com/repositories/1548514/commits?path=pom.xml&page=2>; rel=\"next\", <https://api.github.com/repositories/1548514/commits?path=pom.xml&page=14>; rel=\"last\"",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2072:C014B:5D769A64"
|
||||
}
|
||||
},
|
||||
"uuid" : "6214feb0-5ed5-4325-8407-2f75bef1c4bd",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 3
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "4fa8c092-5fdf-4ac3-a09a-8713da340f66",
|
||||
"name" : "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-4fa8c092-5fdf-4ac3-a09a-8713da340f66.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:02 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4949",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"0563d0f3c97c60e7ae7e2195d94abb92\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 17:42:58 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2154:C0274:5D769A65"
|
||||
}
|
||||
},
|
||||
"uuid" : "4fa8c092-5fdf-4ac3-a09a-8713da340f66",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4-2",
|
||||
"insertionIndex" : 8
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "ad6e998e-9ae1-4bae-9da2-1dd49495d5cb",
|
||||
"name" : "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_06b1108ec041fd8d6e7f54c8578d84a672fee9e4-ad6e998e-9ae1-4bae-9da2-1dd49495d5cb.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:02 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4948",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"0563d0f3c97c60e7ae7e2195d94abb92\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 17:42:58 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A217C:C02A1:5D769A66"
|
||||
}
|
||||
},
|
||||
"uuid" : "ad6e998e-9ae1-4bae-9da2-1dd49495d5cb",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4",
|
||||
"requiredScenarioState" : "scenario-3-repos-stapler-stapler-commits-06b1108ec041fd8d6e7f54c8578d84a672fee9e4-2",
|
||||
"insertionIndex" : 9
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7",
|
||||
"name" : "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:02 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4947",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"210b8038c41dfbe9d59f53360f6c2b2b\"",
|
||||
"Last-Modified" : "Fri, 28 Jun 2019 16:21:18 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A219F:C02CD:5D769A66"
|
||||
}
|
||||
},
|
||||
"uuid" : "8ac20af2-3f87-419a-b5cb-a96f5f2fd3c7",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679-2",
|
||||
"insertionIndex" : 10
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "c9650076-4963-4d6a-9c1c-07c6339a48dd",
|
||||
"name" : "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_2a971c4e38c6d6693f7ad8b6768e4d74840d6679-c9650076-4963-4d6a-9c1c-07c6339a48dd.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:02 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4946",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"210b8038c41dfbe9d59f53360f6c2b2b\"",
|
||||
"Last-Modified" : "Fri, 28 Jun 2019 16:21:18 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A21B5:C02E7:5D769A66"
|
||||
}
|
||||
},
|
||||
"uuid" : "c9650076-4963-4d6a-9c1c-07c6339a48dd",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679",
|
||||
"requiredScenarioState" : "scenario-4-repos-stapler-stapler-commits-2a971c4e38c6d6693f7ad8b6768e4d74840d6679-2",
|
||||
"insertionIndex" : 11
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "b7c821b4-b43e-44a2-bea6-83304ffae91f",
|
||||
"name" : "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-b7c821b4-b43e-44a2-bea6-83304ffae91f.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:03 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4944",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"ed3c1e9504b58dbca20c126b9e36718f\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:19:21 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2201:C0339:5D769A66"
|
||||
}
|
||||
},
|
||||
"uuid" : "b7c821b4-b43e-44a2-bea6-83304ffae91f",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"requiredScenarioState" : "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d-2",
|
||||
"insertionIndex" : 13
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "dd34f14b-38e1-406d-94b8-c650832d9bd4",
|
||||
"name" : "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_2f4ca0f03c1e6188867bddddce12ff213a107d9d-dd34f14b-38e1-406d-94b8-c650832d9bd4.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:02 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4945",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"ed3c1e9504b58dbca20c126b9e36718f\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:19:21 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A21D2:C030E:5D769A66"
|
||||
}
|
||||
},
|
||||
"uuid" : "dd34f14b-38e1-406d-94b8-c650832d9bd4",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-5-repos-stapler-stapler-commits-2f4ca0f03c1e6188867bddddce12ff213a107d9d-2",
|
||||
"insertionIndex" : 12
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "3e6d369c-c2ff-4835-abb3-00858c380485",
|
||||
"name" : "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-3e6d369c-c2ff-4835-abb3-00858c380485.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:05 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4935",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"2524c8a4ca350cca9cada10977584c79\"",
|
||||
"Last-Modified" : "Mon, 18 Feb 2019 22:52:29 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2369:C04E2:5D769A69"
|
||||
}
|
||||
},
|
||||
"uuid" : "3e6d369c-c2ff-4835-abb3-00858c380485",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca-2",
|
||||
"insertionIndex" : 22
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "8573f146-63d0-4ffe-9d91-e05573680be5",
|
||||
"name" : "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_4f260c560ec120f4e2c2ed727244690b1f4d5dca-8573f146-63d0-4ffe-9d91-e05573680be5.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:05 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4934",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"2524c8a4ca350cca9cada10977584c79\"",
|
||||
"Last-Modified" : "Mon, 18 Feb 2019 22:52:29 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2386:C04FF:5D769A69"
|
||||
}
|
||||
},
|
||||
"uuid" : "8573f146-63d0-4ffe-9d91-e05573680be5",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca",
|
||||
"requiredScenarioState" : "scenario-10-repos-stapler-stapler-commits-4f260c560ec120f4e2c2ed727244690b1f4d5dca-2",
|
||||
"insertionIndex" : 23
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "4c78237a-7bc9-49ce-9a1b-0bed99e888b4",
|
||||
"name" : "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-4c78237a-7bc9-49ce-9a1b-0bed99e888b4.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:04 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4939",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"a4dd6b0ee041284621a857e8ea23c8a1\"",
|
||||
"Last-Modified" : "Wed, 03 Apr 2019 19:03:54 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A22C3:C041E:5D769A68"
|
||||
}
|
||||
},
|
||||
"uuid" : "4c78237a-7bc9-49ce-9a1b-0bed99e888b4",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59-2",
|
||||
"insertionIndex" : 18
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b",
|
||||
"name" : "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_53ce34d7d89c5172ae4f4f3167e35852b1910b59-5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:04 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4938",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"a4dd6b0ee041284621a857e8ea23c8a1\"",
|
||||
"Last-Modified" : "Wed, 03 Apr 2019 19:03:54 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A22E2:C0448:5D769A68"
|
||||
}
|
||||
},
|
||||
"uuid" : "5f3cc3b8-f231-4c58-9ffd-f0cf3c14d49b",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59",
|
||||
"requiredScenarioState" : "scenario-8-repos-stapler-stapler-commits-53ce34d7d89c5172ae4f4f3167e35852b1910b59-2",
|
||||
"insertionIndex" : 19
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "a7972e0c-a2e0-4e50-bd1a-374cfad5576c",
|
||||
"name" : "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-a7972e0c-a2e0-4e50-bd1a-374cfad5576c.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:01 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4950",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"94ef432d31efc82dd4627bbd7fdac3ea\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 18:38:42 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2139:C0242:5D769A65"
|
||||
}
|
||||
},
|
||||
"uuid" : "a7972e0c-a2e0-4e50-bd1a-374cfad5576c",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"requiredScenarioState" : "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654-2",
|
||||
"insertionIndex" : 7
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "d76af952-0ff3-4514-9a38-93d9570c5b3c",
|
||||
"name" : "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_6a243869aa3c3f80579102d00848a0083953d654-d76af952-0ff3-4514-9a38-93d9570c5b3c.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:01 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4951",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"94ef432d31efc82dd4627bbd7fdac3ea\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 18:38:42 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A20F4:C01FD:5D769A65"
|
||||
}
|
||||
},
|
||||
"uuid" : "d76af952-0ff3-4514-9a38-93d9570c5b3c",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-2-repos-stapler-stapler-commits-6a243869aa3c3f80579102d00848a0083953d654-2",
|
||||
"insertionIndex" : 6
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "73ac5fc1-ea49-4c48-bc8a-f306908d7836",
|
||||
"name" : "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-73ac5fc1-ea49-4c48-bc8a-f306908d7836.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:04 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4937",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"133ab1934268062df543529934ac067f\"",
|
||||
"Last-Modified" : "Tue, 19 Feb 2019 21:27:25 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2333:C049A:5D769A68"
|
||||
}
|
||||
},
|
||||
"uuid" : "73ac5fc1-ea49-4c48-bc8a-f306908d7836",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26-2",
|
||||
"insertionIndex" : 20
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "77b7d93a-9cd6-48a5-af7d-2ee6e4efa296",
|
||||
"name" : "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_72343298733508cced8dcb8eb43594bcc6130b26-77b7d93a-9cd6-48a5-af7d-2ee6e4efa296.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:05 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4936",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"133ab1934268062df543529934ac067f\"",
|
||||
"Last-Modified" : "Tue, 19 Feb 2019 21:27:25 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A2351:C04C1:5D769A68"
|
||||
}
|
||||
},
|
||||
"uuid" : "77b7d93a-9cd6-48a5-af7d-2ee6e4efa296",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26",
|
||||
"requiredScenarioState" : "scenario-9-repos-stapler-stapler-commits-72343298733508cced8dcb8eb43594bcc6130b26-2",
|
||||
"insertionIndex" : 21
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "1aa53060-8df1-4455-ae37-21eed443f58b",
|
||||
"name" : "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-1aa53060-8df1-4455-ae37-21eed443f58b.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:01 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4952",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"6726f0c54296f6478d8760f10a8946f5\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 18:38:53 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A20D9:C01DE:5D769A65"
|
||||
}
|
||||
},
|
||||
"uuid" : "1aa53060-8df1-4455-ae37-21eed443f58b",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"requiredScenarioState" : "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff-2",
|
||||
"insertionIndex" : 5
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "45c73127-9113-4bb6-8193-cedf907fa96a",
|
||||
"name" : "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_950acbd60ed4289520dcd2a395e5d77f181e1cff-45c73127-9113-4bb6-8193-cedf907fa96a.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:01 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4953",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"6726f0c54296f6478d8760f10a8946f5\"",
|
||||
"Last-Modified" : "Mon, 19 Aug 2019 18:38:53 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A20BD:C01B8:5D769A64"
|
||||
}
|
||||
},
|
||||
"uuid" : "45c73127-9113-4bb6-8193-cedf907fa96a",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-1-repos-stapler-stapler-commits-950acbd60ed4289520dcd2a395e5d77f181e1cff-2",
|
||||
"insertionIndex" : 4
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "35c73b49-8705-4fee-abd6-36c9f4bc2825",
|
||||
"name" : "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-35c73b49-8705-4fee-abd6-36c9f4bc2825.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:03 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4943",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"b596f4895bf3131a6d518d8a4c5a4f41\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:19:11 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A222D:C0378:5D769A67"
|
||||
}
|
||||
},
|
||||
"uuid" : "35c73b49-8705-4fee-abd6-36c9f4bc2825",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321-2",
|
||||
"insertionIndex" : 14
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "fb5ea1a9-6086-40a2-a542-7a87ee6bb437",
|
||||
"name" : "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_d922b808068cf95d6f6ab624ce2c7f49d51f5321-fb5ea1a9-6086-40a2-a542-7a87ee6bb437.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:03 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4942",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"b596f4895bf3131a6d518d8a4c5a4f41\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:19:11 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A226E:C03A1:5D769A67"
|
||||
}
|
||||
},
|
||||
"uuid" : "fb5ea1a9-6086-40a2-a542-7a87ee6bb437",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321",
|
||||
"requiredScenarioState" : "scenario-6-repos-stapler-stapler-commits-d922b808068cf95d6f6ab624ce2c7f49d51f5321-2",
|
||||
"insertionIndex" : 15
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id" : "3621ddfb-672d-47aa-8b45-5d15a3e6caaa",
|
||||
"name" : "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-3621ddfb-672d-47aa-8b45-5d15a3e6caaa.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:03 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4941",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"105b96446da95ff8ee109ccaf4fd0d26\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:17:55 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A228A:C03E4:5D769A67"
|
||||
}
|
||||
},
|
||||
"uuid" : "3621ddfb-672d-47aa-8b45-5d15a3e6caaa",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"requiredScenarioState" : "Started",
|
||||
"newScenarioState" : "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0-2",
|
||||
"insertionIndex" : 16
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id" : "ca95823a-7ad8-4b14-8d90-c619d98c589f",
|
||||
"name" : "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"request" : {
|
||||
"url" : "/repos/stapler/stapler/commits/efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "repos_stapler_stapler_commits_efe737fa365a0187e052bc81391efbd84847a1b0-ca95823a-7ad8-4b14-8d90-c619d98c589f.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:31:04 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4940",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"105b96446da95ff8ee109ccaf4fd0d26\"",
|
||||
"Last-Modified" : "Mon, 08 Apr 2019 14:17:55 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A22A6:C0400:5D769A67"
|
||||
}
|
||||
},
|
||||
"uuid" : "ca95823a-7ad8-4b14-8d90-c619d98c589f",
|
||||
"persistent" : true,
|
||||
"scenarioName" : "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0",
|
||||
"requiredScenarioState" : "scenario-7-repos-stapler-stapler-commits-efe737fa365a0187e052bc81391efbd84847a1b0-2",
|
||||
"insertionIndex" : 17
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"id" : "1b6473bc-f679-44ec-8a6a-6a9d036c91aa",
|
||||
"name" : "user",
|
||||
"request" : {
|
||||
"url" : "/user",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "user-1b6473bc-f679-44ec-8a6a-6a9d036c91aa.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 18:30:59 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4956",
|
||||
"X-RateLimit-Reset" : "1568056823",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"3ba1de3523043df743651bd23efc7def\"",
|
||||
"Last-Modified" : "Mon, 03 Jun 2019 17:47:20 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "D99C:7CF7:A201C:C00FA:5D769A63"
|
||||
}
|
||||
},
|
||||
"uuid" : "1b6473bc-f679-44ec-8a6a-6a9d036c91aa",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 1
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"id": 617210,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=",
|
||||
"name": "github-api",
|
||||
"full_name": "github-api/github-api",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "github-api",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/github-api",
|
||||
"html_url": "https://github.com/github-api",
|
||||
"followers_url": "https://api.github.com/users/github-api/followers",
|
||||
"following_url": "https://api.github.com/users/github-api/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/github-api/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/github-api/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/github-api/orgs",
|
||||
"repos_url": "https://api.github.com/users/github-api/repos",
|
||||
"events_url": "https://api.github.com/users/github-api/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/github-api/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/github-api/github-api",
|
||||
"description": "this is a stubbed description",
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/github-api/github-api",
|
||||
"forks_url": "https://api.github.com/repos/github-api/github-api/forks",
|
||||
"keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/github-api/github-api/teams",
|
||||
"hooks_url": "https://api.github.com/repos/github-api/github-api/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/github-api/github-api/events",
|
||||
"assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/github-api/github-api/tags",
|
||||
"blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/github-api/github-api/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/github-api/github-api/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/github-api/github-api/subscription",
|
||||
"commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/github-api/github-api/merges",
|
||||
"archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/github-api/github-api/downloads",
|
||||
"issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/github-api/github-api/deployments",
|
||||
"created_at": "2010-04-19T04:13:03Z",
|
||||
"updated_at": "2019-09-07T00:07:16Z",
|
||||
"pushed_at": "2019-09-09T06:58:21Z",
|
||||
"git_url": "git://github.com/github-api/github-api.git",
|
||||
"ssh_url": "git@github.com:github-api/github-api.git",
|
||||
"clone_url": "https://github.com/github-api/github-api.git",
|
||||
"svn_url": "https://github.com/github-api/github-api",
|
||||
"homepage": "http://github-api.kohsuke.org/",
|
||||
"size": 11386,
|
||||
"stargazers_count": 551,
|
||||
"watchers_count": 551,
|
||||
"language": "Java",
|
||||
"has_issues": true,
|
||||
"has_projects": true,
|
||||
"has_downloads": true,
|
||||
"has_wiki": true,
|
||||
"has_pages": true,
|
||||
"forks_count": 428,
|
||||
"mirror_url": null,
|
||||
"archived": false,
|
||||
"disabled": false,
|
||||
"open_issues_count": 96,
|
||||
"license": {
|
||||
"key": "mit",
|
||||
"name": "MIT License",
|
||||
"spdx_id": "MIT",
|
||||
"url": "https://api.github.com/licenses/mit",
|
||||
"node_id": "MDc6TGljZW5zZTEz"
|
||||
},
|
||||
"forks": 428,
|
||||
"open_issues": 96,
|
||||
"watchers": 551,
|
||||
"default_branch": "master",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"organization": {
|
||||
"login": "github-api",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/github-api",
|
||||
"html_url": "https://github.com/github-api",
|
||||
"followers_url": "https://api.github.com/users/github-api/followers",
|
||||
"following_url": "https://api.github.com/users/github-api/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/github-api/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/github-api/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/github-api/orgs",
|
||||
"repos_url": "https://api.github.com/users/github-api/repos",
|
||||
"events_url": "https://api.github.com/users/github-api/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/github-api/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 428,
|
||||
"subscribers_count": 52
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"login": "bitwiseman",
|
||||
"id": 1958953,
|
||||
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/bitwiseman",
|
||||
"html_url": "https://github.com/bitwiseman",
|
||||
"followers_url": "https://api.github.com/users/bitwiseman/followers",
|
||||
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
|
||||
"repos_url": "https://api.github.com/users/bitwiseman/repos",
|
||||
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": "Liam Newman",
|
||||
"company": "Cloudbees, Inc.",
|
||||
"blog": "",
|
||||
"location": "Seattle, WA, USA",
|
||||
"email": "bitwiseman@gmail.com",
|
||||
"hireable": null,
|
||||
"bio": "https://twitter.com/bitwiseman",
|
||||
"public_repos": 166,
|
||||
"public_gists": 4,
|
||||
"followers": 133,
|
||||
"following": 9,
|
||||
"created_at": "2012-07-11T20:38:33Z",
|
||||
"updated_at": "2019-06-03T17:47:20Z"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "0a34447d-6390-42da-ad5b-25bb566547f0",
|
||||
"name": "repos_github-api_github-api",
|
||||
"request": {
|
||||
"url": "/repos/github-api/github-api",
|
||||
"method": "GET"
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_github-api_github-api-0a34447d-6390-42da-ad5b-25bb566547f0.json",
|
||||
"headers": {
|
||||
"Date": "Mon, 09 Sep 2019 21:36:30 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4970",
|
||||
"X-RateLimit-Reset": "1568068520",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding"
|
||||
],
|
||||
"ETag": "W/\"4e3dd7308c6c7e9e08b7a9000e0fbfdd\"",
|
||||
"Last-Modified": "Sat, 07 Sep 2019 00:07:16 GMT",
|
||||
"X-OAuth-Scopes": "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "DF6D:7CF5:CA117:F0DAF:5D76C5DD"
|
||||
}
|
||||
},
|
||||
"uuid": "0a34447d-6390-42da-ad5b-25bb566547f0",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "b4b6d514-c9e8-488f-802f-35e51d3ba5b3",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET"
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-b4b6d514-c9e8-488f-802f-35e51d3ba5b3.json",
|
||||
"headers": {
|
||||
"Date": "Mon, 09 Sep 2019 21:36:29 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4971",
|
||||
"X-RateLimit-Reset": "1568068520",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding"
|
||||
],
|
||||
"ETag": "W/\"3ba1de3523043df743651bd23efc7def\"",
|
||||
"Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT",
|
||||
"X-OAuth-Scopes": "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "DF6D:7CF5:CA101:F0DA8:5D76C5DD"
|
||||
}
|
||||
},
|
||||
"uuid": "b4b6d514-c9e8-488f-802f-35e51d3ba5b3",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"id": 617210,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=",
|
||||
"name": "github-api",
|
||||
"full_name": "github-api/github-api",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "github-api",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/github-api",
|
||||
"html_url": "https://github.com/github-api",
|
||||
"followers_url": "https://api.github.com/users/github-api/followers",
|
||||
"following_url": "https://api.github.com/users/github-api/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/github-api/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/github-api/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/github-api/orgs",
|
||||
"repos_url": "https://api.github.com/users/github-api/repos",
|
||||
"events_url": "https://api.github.com/users/github-api/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/github-api/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/github-api/github-api",
|
||||
"description": "this is a stubbed description",
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/github-api/github-api",
|
||||
"forks_url": "https://api.github.com/repos/github-api/github-api/forks",
|
||||
"keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/github-api/github-api/teams",
|
||||
"hooks_url": "https://api.github.com/repos/github-api/github-api/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/github-api/github-api/events",
|
||||
"assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/github-api/github-api/tags",
|
||||
"blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/github-api/github-api/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/github-api/github-api/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/github-api/github-api/subscription",
|
||||
"commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/github-api/github-api/merges",
|
||||
"archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/github-api/github-api/downloads",
|
||||
"issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/github-api/github-api/deployments",
|
||||
"created_at": "2010-04-19T04:13:03Z",
|
||||
"updated_at": "2019-09-07T00:07:16Z",
|
||||
"pushed_at": "2019-09-09T06:58:21Z",
|
||||
"git_url": "git://github.com/github-api/github-api.git",
|
||||
"ssh_url": "git@github.com:github-api/github-api.git",
|
||||
"clone_url": "https://github.com/github-api/github-api.git",
|
||||
"svn_url": "https://github.com/github-api/github-api",
|
||||
"homepage": "http://github-api.kohsuke.org/",
|
||||
"size": 11386,
|
||||
"stargazers_count": 551,
|
||||
"watchers_count": 551,
|
||||
"language": "Java",
|
||||
"has_issues": true,
|
||||
"has_projects": true,
|
||||
"has_downloads": true,
|
||||
"has_wiki": true,
|
||||
"has_pages": true,
|
||||
"forks_count": 428,
|
||||
"mirror_url": null,
|
||||
"archived": false,
|
||||
"disabled": false,
|
||||
"open_issues_count": 96,
|
||||
"license": {
|
||||
"key": "mit",
|
||||
"name": "MIT License",
|
||||
"spdx_id": "MIT",
|
||||
"url": "https://api.github.com/licenses/mit",
|
||||
"node_id": "MDc6TGljZW5zZTEz"
|
||||
},
|
||||
"forks": 428,
|
||||
"open_issues": 96,
|
||||
"watchers": 551,
|
||||
"default_branch": "master",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"organization": {
|
||||
"login": "github-api",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/github-api",
|
||||
"html_url": "https://github.com/github-api",
|
||||
"followers_url": "https://api.github.com/users/github-api/followers",
|
||||
"following_url": "https://api.github.com/users/github-api/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/github-api/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/github-api/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/github-api/orgs",
|
||||
"repos_url": "https://api.github.com/users/github-api/repos",
|
||||
"events_url": "https://api.github.com/users/github-api/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/github-api/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 428,
|
||||
"subscribers_count": 52
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"login": "bitwiseman",
|
||||
"id": 1958953,
|
||||
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/bitwiseman",
|
||||
"html_url": "https://github.com/bitwiseman",
|
||||
"followers_url": "https://api.github.com/users/bitwiseman/followers",
|
||||
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
|
||||
"repos_url": "https://api.github.com/users/bitwiseman/repos",
|
||||
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": "Liam Newman",
|
||||
"company": "Cloudbees, Inc.",
|
||||
"blog": "",
|
||||
"location": "Seattle, WA, USA",
|
||||
"email": "bitwiseman@gmail.com",
|
||||
"hireable": null,
|
||||
"bio": "https://twitter.com/bitwiseman",
|
||||
"public_repos": 166,
|
||||
"public_gists": 4,
|
||||
"followers": 133,
|
||||
"following": 9,
|
||||
"created_at": "2012-07-11T20:38:33Z",
|
||||
"updated_at": "2019-06-03T17:47:20Z"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "0a34447d-6390-42da-ad5b-25bb566547f0",
|
||||
"name": "repos_github-api_github-api",
|
||||
"request": {
|
||||
"url": "/repos/github-api/github-api",
|
||||
"method": "GET"
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_github-api_github-api-0a34447d-6390-42da-ad5b-25bb566547f0.json",
|
||||
"headers": {
|
||||
"Date": "Mon, 09 Sep 2019 21:36:30 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4970",
|
||||
"X-RateLimit-Reset": "1568068520",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding"
|
||||
],
|
||||
"ETag": "W/\"4e3dd7308c6c7e9e08b7a9000e0fbfdd\"",
|
||||
"Last-Modified": "Sat, 07 Sep 2019 00:07:16 GMT",
|
||||
"X-OAuth-Scopes": "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "DF6D:7CF5:CA117:F0DAF:5D76C5DD"
|
||||
}
|
||||
},
|
||||
"uuid": "0a34447d-6390-42da-ad5b-25bb566547f0",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "b4b6d514-c9e8-488f-802f-35e51d3ba5b3",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET"
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-b4b6d514-c9e8-488f-802f-35e51d3ba5b3.json",
|
||||
"headers": {
|
||||
"Date": "Mon, 09 Sep 2019 21:36:29 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4971",
|
||||
"X-RateLimit-Reset": "1568068520",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding"
|
||||
],
|
||||
"ETag": "W/\"3ba1de3523043df743651bd23efc7def\"",
|
||||
"Last-Modified": "Mon, 03 Jun 2019 17:47:20 GMT",
|
||||
"X-OAuth-Scopes": "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "DF6D:7CF5:CA101:F0DA8:5D76C5DD"
|
||||
}
|
||||
},
|
||||
"uuid": "b4b6d514-c9e8-488f-802f-35e51d3ba5b3",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"login": "stubbed-user-login",
|
||||
"id": 2958353,
|
||||
"node_id": "MDGGVXNlcjE5NTg5NTM=",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/2958353?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/stubbed-user-login",
|
||||
"html_url": "https://github.com/stubbed-user-login",
|
||||
"followers_url": "https://api.github.com/users/stubbed-user-login/followers",
|
||||
"following_url": "https://api.github.com/users/stubbed-user-login/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/stubbed-user-login/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/stubbed-user-login/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/stubbed-user-login/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/stubbed-user-login/orgs",
|
||||
"repos_url": "https://api.github.com/users/stubbed-user-login/repos",
|
||||
"events_url": "https://api.github.com/users/stubbed-user-login/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/stubbed-user-login/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": "L. Jenkins",
|
||||
"company": "Sometimes",
|
||||
"blog": "",
|
||||
"location": "Seattle, WA, USA",
|
||||
"email": "stubbed-user-login@gmail.com",
|
||||
"hireable": null,
|
||||
"bio": "https://twitter.com/stubbed-user-login",
|
||||
"public_repos": 166,
|
||||
"public_gists": 4,
|
||||
"followers": 133,
|
||||
"following": 9,
|
||||
"created_at": "2012-07-11T20:38:33Z",
|
||||
"updated_at": "2019-06-03T17:47:20Z"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"id" : "67d218ce-0abd-4a0a-98ea-626565e977ca",
|
||||
"name" : "user",
|
||||
"request" : {
|
||||
"url" : "/user",
|
||||
"method" : "GET"
|
||||
},
|
||||
"response" : {
|
||||
"status" : 200,
|
||||
"bodyFileName" : "user-67d218ce-0abd-4a0a-98ea-626565e977ca.json",
|
||||
"headers" : {
|
||||
"Date" : "Mon, 09 Sep 2019 21:24:28 GMT",
|
||||
"Content-Type" : "application/json; charset=utf-8",
|
||||
"Server" : "GitHub.com",
|
||||
"Status" : "200 OK",
|
||||
"X-RateLimit-Limit" : "5000",
|
||||
"X-RateLimit-Remaining" : "4981",
|
||||
"X-RateLimit-Reset" : "1568067845",
|
||||
"Cache-Control" : "private, max-age=60, s-maxage=60",
|
||||
"Vary" : [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding" ],
|
||||
"ETag" : "W/\"3ba1de3523043df743651bd23efc7def\"",
|
||||
"Last-Modified" : "Mon, 03 Jun 2019 17:47:20 GMT",
|
||||
"X-OAuth-Scopes" : "delete_repo, gist, notifications, repo",
|
||||
"X-Accepted-OAuth-Scopes" : "",
|
||||
"X-GitHub-Media-Type" : "unknown, github.v3",
|
||||
"Access-Control-Expose-Headers" : "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
|
||||
"Access-Control-Allow-Origin" : "*",
|
||||
"Strict-Transport-Security" : "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options" : "deny",
|
||||
"X-Content-Type-Options" : "nosniff",
|
||||
"X-XSS-Protection" : "1; mode=block",
|
||||
"Referrer-Policy" : "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy" : "default-src 'none'",
|
||||
"X-GitHub-Request-Id" : "DEFC:7CF6:1726A3:1B693D:5D76C30C"
|
||||
}
|
||||
},
|
||||
"uuid" : "67d218ce-0abd-4a0a-98ea-626565e977ca",
|
||||
"persistent" : true,
|
||||
"insertionIndex" : 1
|
||||
}
|
||||
Reference in New Issue
Block a user